aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bcpp.rb
diff options
context:
space:
mode:
authorMartin Kühl2010-05-25 21:33:37 +0200
committerAdam Vandenberg2010-06-02 08:58:42 -0700
commit1243b57eda1d4e26bebe41f7449c5b8f35087fbd (patch)
tree602d17a1aa0f9293a04e967c58d79c09343df1f5 /Library/Formula/bcpp.rb
parent543d2f570bd84cd6e188712db8f940f38885a6c2 (diff)
downloadhomebrew-1243b57eda1d4e26bebe41f7449c5b8f35087fbd.tar.bz2
New formula: bcpp
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/bcpp.rb')
-rw-r--r--Library/Formula/bcpp.rb12
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