aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ipbt.rb
blob: 95fbc92ff24f93236349b1c9676a448c5499e3e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Ipbt < Formula
  homepage 'http://www.chiark.greenend.org.uk/~sgtatham/ipbt/'
  url 'http://www.chiark.greenend.org.uk/~sgtatham/ipbt/ipbt-r9253.tar.gz'
  version 'r9253'
  md5 '4af1feec39b95b437b669e3f1e46d7ef'

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

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