blob: 2ed8adae03d454ce510798abe10d45cb533ec8ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
  |