homebrew-core/Formula/btpd.rb

13 lines
346 B
Ruby

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