a372b9241a
Closes Homebrew/homebrew#26465. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
16 lines
505 B
Ruby
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
|