homebrew-core/Formula/ipbt.rb
Andrew Kraut 16b64c5999 ipbt r9253
This is a new formula for ipbt. It plays back recordings made with
ttyrec.

Closes Homebrew/homebrew#9948.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-03-20 22:39:17 -07:00

18 lines
456 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-r9253.tar.gz'
version 'r9253'
md5 '4af1feec39b95b437b669e3f1e46d7ef'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
def test
system "#{bin}/ipbt"
end
end