blob: e669ba240d45f65364580557c663a3b5ed9b6595 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Ngrep < Formula
url 'http://downloads.sourceforge.net/project/ngrep/ngrep/1.45/ngrep-1.45.tar.bz2'
homepage 'http://ngrep.sourceforge.net/'
sha1 'f26090a6ac607db66df99c6fa9aef74968f3330f'
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
|