Skip to content

Instantly share code, notes, and snippets.

@partkyle
Last active December 20, 2015 12:49
Show Gist options
  • Select an option

  • Save partkyle/6133932 to your computer and use it in GitHub Desktop.

Select an option

Save partkyle/6133932 to your computer and use it in GitHub Desktop.
install emacs locally from source
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