Skip to content

Instantly share code, notes, and snippets.

@nagae
Created May 7, 2012 07:16
Show Gist options
  • Select an option

  • Save nagae/2626418 to your computer and use it in GitHub Desktop.

Select an option

Save nagae/2626418 to your computer and use it in GitHub Desktop.
org-mode (for Emacs 23.4)
require 'formula'
class Org < Formula
url 'http://orgmode.org/org-latest.tar.gz'
homepage 'http://orgmode.org/'
# depends_on 'cmake'
def install
inreplace 'Makefile' do |s|
s.change_make_var! "prefix", prefix
s.change_make_var! "EMACS", "/usr/local/Cellar/emacs/23.4/Emacs.app/Contents/MacOS/Emacs"
s.change_make_var! "lispdir", "/usr/local/Cellar/org/lisp"
s.change_make_var! "infodir", "/usr/local/share/info"
end
system "make install"
system "make install-info"
system "cp -r contrib /usr/local/Cellar/org/contrib"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment