aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bip.rb
blob: ecdd0ba60fd42487f4107f31756966c50f0665cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require "formula"

class Bip < Formula
  homepage "http://bip.milkypond.org"
  url "http://ftp.de.debian.org/debian/pool/main/b/bip/bip_0.8.9.orig.tar.gz"
  sha1 "6c6828dde0ec9c41237bac42a679aa8237bdeffe"

  def install
    system "./configure", "--disable-debug",
                          "--disable-dependency-tracking",
                          "--disable-silent-rules",
                          "--prefix=#{prefix}"
    system "make", "install"
  end
end