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

class Ipbt < Formula
  homepage 'http://www.chiark.greenend.org.uk/~sgtatham/ipbt/'
  url 'http://www.chiark.greenend.org.uk/~sgtatham/ipbt/ipbt-r9487.tar.gz'
  sha1 '2ce40ed075c2a6c4dc8ad88ece5eccbb402c71f0'
  version 'r9487'

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

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