homebrew-core/Formula/ipbt.rb
nibbles 2bits f5bc2f5ae3 ipbt r9487
Upgrade ipbt to version r9487.
Remove the `--disable-debug` that's unrecognized.
Tested on Lion with clang and llvm from XCode-4.3.3.

Closes Homebrew/homebrew#12875.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-06-16 10:41:11 -05:00

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