Last active
October 10, 2015 16:47
-
-
Save nagae/3720638 to your computer and use it in GitHub Desktop.
org-mode (7.9.3e, Emacs version free)
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-7.9.3e.tar.gz' | |
| homepage 'http://orgmode.org/' | |
| # depends_on 'cmake' | |
| def install | |
| system "make help config" | |
| inreplace 'local.mk' do |s| | |
| s.change_make_var! "prefix", prefix | |
| s.change_make_var! "EMACS", "/Applications/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 config" | |
| 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