homebrew-core/Formula/btpd.rb

13 lines
337 B
Ruby
Raw Normal View History

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