Skip to content

Instantly share code, notes, and snippets.

@verus
Created January 17, 2012 09:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save verus/1625847 to your computer and use it in GitHub Desktop.
Save verus/1625847 to your computer and use it in GitHub Desktop.
Bayon formula for homebrew
require 'formula'
class Bayon < Formula
url 'http://bayon.googlecode.com/files/bayon-0.1.0.tar.gz'
homepage 'http://bayon.googlecode.com/'
md5 '7270e483bdb1f7d58c3efbf695e2d427'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment