homebrew-core/Formula/btpd.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

26 lines
775 B
Ruby

class Btpd < Formula
desc "BitTorrent protocol daemon"
homepage "https://github.com/btpd/btpd"
url "https://github.com/downloads/btpd/btpd/btpd-0.16.tar.gz"
sha256 "296bdb718eaba9ca938bee56f0976622006c956980ab7fc7a339530d88f51eb8"
bottle do
cellar :any
sha1 "4d71a2e91abdcd9040d0941fe72d7a19af3c35e5" => :yosemite
sha1 "bca4ea6ffeed653d4aa86d6128c8a1f84aafd0b2" => :mavericks
sha1 "b775479e515592aff7253ff6a0b804aec661e777" => :mountain_lion
end
revision 1
depends_on "openssl"
def install
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