homebrew-core/Formula/btpd.rb

19 lines
477 B
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class Btpd < Formula
homepage "https://github.com/btpd/btpd"
url "https://github.com/downloads/btpd/btpd/btpd-0.16.tar.gz"
sha1 "fb7d396ed5c224dc6e743ac481e4feb4a3cf7b75"
revision 1
depends_on "openssl"
def install
2013-01-27 02:00:39 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
test do
assert_match /Torrents can be specified/, pipe_output("#{bin}/btcli --help 2>&1")
end
end