Last active
December 20, 2015 12:49
-
-
Save partkyle/6133932 to your computer and use it in GitHub Desktop.
install emacs locally from source
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
| LOCAL=$HOME/local | |
| VERSION=24.3 | |
| mkdir -p $HOME/build | |
| cd $HOME/build | |
| wget http://ftp.gnu.org/gnu/emacs/emacs-$VERSION.tar.gz | |
| tar xvfz emacs-$VERSION.tar.gz | |
| cd emacs-$VERSION | |
| ./configure --without-x --prefix=$LOCAL | |
| make | |
| make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment