Created
May 2, 2016 04:06
-
-
Save jclosure/2732898f35adaf4a8bb79f7805bc7d87 to your computer and use it in GitHub Desktop.
install emacs 24.5 from src on Centos 6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yum install gcc make ncurses-devel | |
yum install giflib-devel libjpeg-devel libtiff-devel -y | |
cd /usr/local/src | |
wget http://ftp.gnu.org/pub/gnu/emacs/emacs-24.5.tar.gz | |
tar xzvf emacs-24.5.tar.gz | |
cd emacs-24.5 | |
./configure --without-x --without-selinux | |
make && make install | |
which emacs | |
emacs --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment