pakchois 0.4

Closes Homebrew/homebrew#16767.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Michael Dippery 2012-12-27 11:54:20 -05:00 committed by Adam Vandenberg
parent 7ce98ac16f
commit 71fbb582c5

13
Formula/pakchois.rb Normal file
View file

@ -0,0 +1,13 @@
require 'formula'
class Pakchois < Formula
homepage 'http://www.manyfish.co.uk/pakchois/'
url 'http://www.manyfish.co.uk/pakchois/pakchois-0.4.tar.gz'
sha1 'dea8a9a50ec06595b498bdefd1daacdb86e9ceda'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end