Skip to content

Instantly share code, notes, and snippets.

@Sliim
Last active August 29, 2015 14:18
Show Gist options
  • Save Sliim/4403f4d1e2eb2ee3e81d to your computer and use it in GitHub Desktop.
Save Sliim/4403f4d1e2eb2ee3e81d to your computer and use it in GitHub Desktop.
recipe 'emacs-24.4-ci' do
tar_gz 'http://ftpmirror.gnu.org/emacs/emacs-24.4.tar.gz'
linux do
option '--prefix', installation_path
option '--with-x-toolkit=no'
option '--with-xpm=no'
option '--with-jpeg=no'
option '--with-png=no'
option '--with-gif=no'
option '--with-tiff=no'
option '--with-makeinfo=no'
end
install do
configure
make 'bootstrap'
make 'install'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment