homebrew-core/Formula/ipbt.rb
Ted Pennings 4cd0935be7 Convert all 'def test' formulae to 'test do'
Closes Homebrew/homebrew#26942.
Closes Homebrew/homebrew#26946.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-24 19:54:02 -08:00

17 lines
419 B
Ruby

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 'c4ce632afcefd9d1537567e17e76645f5f4482e8'
version 'r9487'
def install
system './configure', "--prefix=#{prefix}", '--disable-dependency-tracking'
system "make install"
end
test do
system "#{bin}/ipbt"
end
end