- 開発ツールをインストールします。
$ 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
下記サイトを参考にしました。
- http://qiita.com/ironsand/items/fc755449b0e754ab1dd0
- http://toybox-v2.blogspot.jp/2013/01/centos5emacs242.html
- http://stackoverflow.com/questions/9506046/ffmpeg-install-on-centos-64-bit-install-with-fpic-error
1.4Gi くらい必要です。