homebrew-core/Formula/lft.rb
Andrew Kraut a23149c060 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>
2010-05-11 13:53:41 -07:00

12 lines
324 B
Ruby

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