homebrew-core/Formula/tcping.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

22 lines
630 B
Ruby

class Tcping < Formula
desc "TCP connect to the given IP/port combo"
homepage "http://www.linuxco.de/tcping/tcping.html"
url "http://www.linuxco.de/tcping/tcping-1.3.5.tar.gz"
sha256 "1ad52e904094d12b225ac4a0bc75297555e931c11a1501445faa548ff5ecdbd0"
bottle do
cellar :any
sha1 "d0a50ca49925897916c3ab8e06b0a2c3aa6cb48b" => :yosemite
sha1 "38d8390423e2fc6c4005589f7fa7eff28d065372" => :mavericks
sha1 "539939ac73c05e53d4304f17c5f91fdc078dec7d" => :mountain_lion
end
def install
system "make"
bin.install "tcping"
end
test do
system "#{bin}/tcping", "www.google.com", "80"
end
end