homebrew-core/Formula/ngrep.rb

17 lines
557 B
Ruby
Raw Normal View History

2009-12-01 01:52:49 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Ngrep < Formula
2009-12-01 01:52:49 +00:00
url 'http://downloads.sourceforge.net/project/ngrep/ngrep/1.45/ngrep-1.45.tar.bz2'
homepage 'http://ngrep.sourceforge.net/'
sha1 'f26090a6ac607db66df99c6fa9aef74968f3330f'
2009-12-01 01:52:49 +00:00
def install
system "./configure", "--prefix=#{prefix}",
"--disable-debug",
"--disable-dependency-tracking",
# this line required to make configure succeed
"--with-pcap-includes=/usr/include"
system "make install"
end
end