homebrew-core/Formula/daq.rb
linuxgeek247 13a81dc71b daq 0.6.2
Closes Homebrew/homebrew#12252.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-05-15 14:19:48 -05:00

13 lines
335 B
Ruby

require 'formula'
class Daq < Formula
homepage 'http://www.snort.org/'
url 'http://www.snort.org/dl/snort-current/daq-0.6.2.tar.gz'
md5 '6ea8aaa6f067f8b8ef6de45b95d55875'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end