aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorRajiv Aaron Manglani2010-04-04 03:16:24 -0400
committerAdam Vandenberg2010-04-04 23:17:55 -0700
commitea55befe8588188cf48cc7f302c83fb4ea232ab4 (patch)
tree0b1ec92c02f018471893424a3816574c9e53d407 /Library
parentf78bb1050eedfcf7674bceea1db984bb74918d51 (diff)
downloadhomebrew-ea55befe8588188cf48cc7f302c83fb4ea232ab4.tar.bz2
tcptrack 1.3.0.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/tcptrack.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/tcptrack.rb b/Library/Formula/tcptrack.rb
new file mode 100644
index 000000000..cb33cbd01
--- /dev/null
+++ b/Library/Formula/tcptrack.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Tcptrack <Formula
+ url 'http://www.rhythm.cx/~steve/devel/tcptrack/release/1.3.0/source/tcptrack-1.3.0.tar.gz'
+ homepage 'http://www.rhythm.cx/~steve/devel/tcptrack/'
+ md5 '227baeb2f96758f7614f6f788b6a4d93'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "make install"
+ end
+
+ def caveats
+ "Run tcptrack as root or via sudo in order for the program to obtain permissions on the network interface."
+ end
+end