Skip to content

Instantly share code, notes, and snippets.

@Sliim
Last active August 29, 2015 14:18
Show Gist options
  • Save Sliim/be2fc135104bf9eb8a4e to your computer and use it in GitHub Desktop.
Save Sliim/be2fc135104bf9eb8a4e to your computer and use it in GitHub Desktop.
recipe 'emacs-24.3-ci' do
tar_gz 'http://ftpmirror.gnu.org/emacs/emacs-24.3.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