93b51fbc37
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
12 lines
261 B
Ruby
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
|