Created
May 7, 2012 07:16
-
-
Save nagae/2626418 to your computer and use it in GitHub Desktop.
org-mode (for Emacs 23.4)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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