homebrew-core/Formula/ipbt.rb

18 lines
420 B
Ruby
Raw Normal View History

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'
2013-09-27 18:35:28 +00:00
sha1 '6938c792994473cff2e3cdb44edc957664e6cc83'
version 'r9487'
def install
system './configure', "--prefix=#{prefix}", '--disable-dependency-tracking'
system "make install"
end
def test
system "#{bin}/ipbt"
end
end