homebrew-core/Formula/tcping.rb
Paul Leonard 93b51fbc37 Add tcping
This is a new brew formula for tcping, a utility that performs ping-line
connect() operations to a given IP/port combination.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>

Fixes Homebrew/homebrew#3029
2010-11-02 07:41:40 -07:00

12 lines
261 B
Ruby

require 'formula'
class Tcping <Formula
url 'http://www.linuxco.de/tcping/tcping-1.3.5.tar.gz'
homepage 'http://www.linuxco.de/tcping/tcping.html'
md5 'f9dd03c730db6999ca8beca479f078e3'
def install
system "make"
bin.install 'tcping'
end
end