2012-02-02 18:28:26 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ipbt < Formula
|
|
|
|
homepage 'http://www.chiark.greenend.org.uk/~sgtatham/ipbt/'
|
2012-06-16 11:16:47 +00:00
|
|
|
url 'http://www.chiark.greenend.org.uk/~sgtatham/ipbt/ipbt-r9487.tar.gz'
|
2014-08-07 16:15:31 +00:00
|
|
|
sha1 'cd7c0b991a9422ed5f31ce13846f28fb5860b0dc'
|
2012-06-16 11:16:47 +00:00
|
|
|
version 'r9487'
|
2012-02-02 18:28:26 +00:00
|
|
|
|
2014-08-07 16:45:10 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "979bc5d479a2a232c45301737133bd008e50214a" => :mavericks
|
|
|
|
sha1 "556a13b85150ca19aaab8915d2d107d9101e1abd" => :mountain_lion
|
|
|
|
sha1 "9ddf633e6a677e4818b14788bf13c3263fd3e85d" => :lion
|
|
|
|
end
|
|
|
|
|
2012-02-02 18:28:26 +00:00
|
|
|
def install
|
2012-06-16 11:16:47 +00:00
|
|
|
system './configure', "--prefix=#{prefix}", '--disable-dependency-tracking'
|
2012-02-02 18:28:26 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
2014-02-23 21:31:41 +00:00
|
|
|
test do
|
2012-02-02 18:28:26 +00:00
|
|
|
system "#{bin}/ipbt"
|
|
|
|
end
|
|
|
|
end
|