aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ipbt.rb
blob: dc1836d55d2cd36d766e481adcc7633556bd386d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class Ipbt < Formula
  homepage "http://www.chiark.greenend.org.uk/~sgtatham/ipbt/"
  url "http://www.chiark.greenend.org.uk/~sgtatham/ipbt/ipbt-20141026.2197432.tar.gz"
  sha1 "db190dda34611f0037c56b0cf8fb595d10f2b1a5"

  bottle do
    cellar :any
    sha1 "94e2a914cf9064bfe6efd9657d207ea40ca79d57" => :yosemite
    sha1 "3cdaf9b8d08e0df8c07abf5b5a1f032bb3ea9247" => :mavericks
    sha1 "a8069949e4cc1e4a6cf7124ac3e2ecc3488a33ee" => :mountain_lion
  end

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

  test do
    system "#{bin}/ipbt"
  end
end