diff options
| author | Martin Kühl | 2010-05-25 21:33:37 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2010-06-02 08:58:42 -0700 |
| commit | 1243b57eda1d4e26bebe41f7449c5b8f35087fbd (patch) | |
| tree | 602d17a1aa0f9293a04e967c58d79c09343df1f5 | |
| parent | 543d2f570bd84cd6e188712db8f940f38885a6c2 (diff) | |
| download | homebrew-1243b57eda1d4e26bebe41f7449c5b8f35087fbd.tar.bz2 | |
New formula: bcpp
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -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 |
