Skip to content

Instantly share code, notes, and snippets.

@partkyle
Created August 1, 2013 18:30
Show Gist options
  • Save partkyle/6133931 to your computer and use it in GitHub Desktop.
Save partkyle/6133931 to your computer and use it in GitHub Desktop.
install emacs locally from source
LOCAL=$HOME/local
VERSON=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 --prefix=$LOCAL
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment