71fbb582c5
Closes Homebrew/homebrew#16767. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
363 B
Ruby
13 lines
363 B
Ruby
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
|