blob: cbe41183a22a77ec57317a52ea046daa11430ebf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Daq < Formula
url 'http://www.snort.org/dl/snort-current/daq-0.5.tar.gz'
homepage 'http://www.snort.org/'
md5 'ea9d8147f39c44ce00dd2d7eb19ce0ea'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|