aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAndrew Kraut2010-05-11 13:02:00 -0600
committerAdam Vandenberg2010-05-11 13:53:41 -0700
commit5109e3402ca5303d200dfc0e9d5e4631d6a3cccc (patch)
tree7bb343b9dabbb30a7b7b46f3ce3cfdf2d8c9e48d /Library/Formula
parentdbcbc3b672c6db9847323fd67e37db8323806ff3 (diff)
downloadhomebrew-5109e3402ca5303d200dfc0e9d5e4631d6a3cccc.tar.bz2
Added forumla for lft (Layer Four Traceroute)
Built a new formula for lft 3.1. Very simple, just download and make install. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/lft.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/lft.rb b/Library/Formula/lft.rb
new file mode 100644
index 000000000..3dada675a
--- /dev/null
+++ b/Library/Formula/lft.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Lft <Formula
+ url 'http://pwhois.org/dl/index.who?file=lft-3.1.tar.gz'
+ homepage 'http://pwhois.org/lft/'
+ md5 '70e69706e7600f34c0dfb54e2ee5eb01'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "make install"
+ end
+end