homebrew-core/Formula/btpd.rb
Blake Smith 0ef0b1ff8e Update btpd version to 0.16
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-10-12 21:07:41 -07:00

12 lines
334 B
Ruby

require 'formula'
class Btpd <Formula
url 'http://github.com/downloads/btpd/btpd/btpd-0.16.tar.gz'
homepage 'http://github.com/btpd/btpd'
md5 'fe042aae8d7c515ecd855673d1c2b33e'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end