homebrew-core/Formula/bip.rb
David Edmondson a372b9241a bip 0.8.9 (new formula)
Closes Homebrew/homebrew#26465.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-02-07 11:39:16 +00:00

16 lines
505 B
Ruby

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