diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/pakchois.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/pakchois.rb b/Library/Formula/pakchois.rb new file mode 100644 index 000000000..9b326c0cb --- /dev/null +++ b/Library/Formula/pakchois.rb @@ -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 |
