diff options
| -rw-r--r-- | Library/Formula/bcpp.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/bcpp.rb b/Library/Formula/bcpp.rb new file mode 100644 index 000000000..926ca486d --- /dev/null +++ b/Library/Formula/bcpp.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Bcpp <Formula + url 'ftp://invisible-island.net/bcpp/bcpp-20090630.tgz' + homepage 'http://invisible-island.net/bcpp/' + md5 '3428176dafcf4af1d2741804bca05189' + + def install + system "./configure", "--prefix=#{prefix}", "--mandir=#{man}" + system "make install" + end +end |
