Skip to content

Instantly share code, notes, and snippets.

@false-git
Created April 9, 2012 03:36
Show Gist options
  • Save false-git/2341218 to your computer and use it in GitHub Desktop.
Save false-git/2341218 to your computer and use it in GitHub Desktop.
homebrew用org-modeの野良Formula
require 'formula'
class Org < Formula
homepage ''
url 'http://orgmode.org/org-7.8.08.tar.gz'
md5 '1ba73757d176e66b02cccf1c23616621'
def install
system "make Emacs=~/Applications/Emacs.app/Contents/MacOS/Emacs install"
end
def test
# This test will fail and we won't accept that! It's enough to just replace
# "false" with the main program this formula installs, but it'd be nice if you
# were more thorough. Run the test with `brew test org`.
system "false"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment