aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Edmondson2014-02-06 14:56:12 +0000
committerMike McQuaid2014-02-07 11:39:16 +0000
commit7f0240f49ba76c1b08aac297d4949d2c12ffa091 (patch)
tree70d734adeac73111d204367c4d5c969857702516 /Library/Formula
parent9d0209ac50b6d92d31f0cbb738cc18104a3417dc (diff)
downloadhomebrew-7f0240f49ba76c1b08aac297d4949d2c12ffa091.tar.bz2
bip 0.8.9 (new formula)
Closes #26465. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/bip.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/bip.rb b/Library/Formula/bip.rb
new file mode 100644
index 000000000..2ed8adae0
--- /dev/null
+++ b/Library/Formula/bip.rb
@@ -0,0 +1,16 @@
+require "formula"
+
+class Bip < Formula
+ homepage "http://bip.milkypond.org"
+ url "https://projects.duckcorp.org/attachments/download/61/bip-0.8.9.tar.gz",
+ :using => CurlUnsafeDownloadStrategy
+ sha1 "6c6828dde0ec9c41237bac42a679aa8237bdeffe"
+
+ def install
+ system "./configure", "--disable-debug",
+ "--disable-dependency-tracking",
+ "--disable-silent-rules",
+ "--prefix=#{prefix}"
+ system "make", "install"
+ end
+end