LoginSignup
2
2

More than 5 years have passed since last update.

How to install GNU Emacs 24.3.50.1 on CentOS 6.4

Last updated at Posted at 2013-10-16
  • 開発ツールをインストールします。
$ sudo yum -y groupinstall "Development Tools"
  • autoconf をインストールします。(最新版が必要)
$ wget ftp://ftp.gnu.org/gnu/autoconf/autoconf-latest.tar.xz
$ tar xf autoconf-latest.tar.xz
$ cd autoconf-2.69
$ ./configure
$ make
$ sudo make install
  • automake のインストールが必要かも

  • ncurses をインストールします。

$ cd
$ wget http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.9.tar.gz
$ tar xf ncurses-5.9.tar.gz
$ cd ncurses-5.9
$ ./configure --with-shared
$ make
$ sudo make install
  • emacs をインストールします。
$ cd
$ git clone git://git.savannah.gnu.org/emacs.git
$ cd emacs
$ ./autogen.sh
$ ./configure --without-x --with-x-toolkit=no --with-xpm=no --with-jpeg=no \
    --with-gif=no --with-tiff=no --with-png=no --without-selinux --without-makeinfo
$ make bootstrap
$ sudo make install

下記サイトを参考にしました。

1.4Gi くらい必要です。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2