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