aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorPaul Leonard2010-11-02 08:31:51 -0500
committerAdam Vandenberg2010-11-02 07:41:40 -0700
commit0081253ca856bfca1c17b6bcf712295b858f08fd (patch)
tree440b88d3b03995d37d8d278c08c895cad1b920e2 /Library/Formula
parentede52b767059c94671997ec5bc5eb37b108b3d3b (diff)
downloadhomebrew-0081253ca856bfca1c17b6bcf712295b858f08fd.tar.bz2
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 #3029
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/tcping.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/tcping.rb b/Library/Formula/tcping.rb
new file mode 100644
index 000000000..c4d2efd83
--- /dev/null
+++ b/Library/Formula/tcping.rb
@@ -0,0 +1,12 @@
+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