Skip to content

Instantly share code, notes, and snippets.

@drewr
Last active June 13, 2017 14:56
Show Gist options
  • Save drewr/fd463bfe121764b90e752958d2d8f1db to your computer and use it in GitHub Desktop.
Save drewr/fd463bfe121764b90e752958d2d8f1db to your computer and use it in GitHub Desktop.
#!/usr/bin/env zsh
setopt ERR_EXIT
VERSION=25.1.91
TAG=emacs-${VERSION}
DIR=~/src/emacs/emacs
PREFIX=/usr/local/emacs/emacs-${VERSION}
cd $DIR
git clean -fd
git fetch
git co -f $TAG
./autogen.sh all
./configure \
--prefix=${PREFIX} \
--with-x-toolkit=no \
--with-xpm=no \
--with-png=no \
--with-gif=no \
--with-tiff=no
make
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment