aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/daq.rb11
1 files changed, 6 insertions, 5 deletions
diff --git a/Library/Formula/daq.rb b/Library/Formula/daq.rb
index 231758162..969a863de 100644
--- a/Library/Formula/daq.rb
+++ b/Library/Formula/daq.rb
@@ -1,13 +1,14 @@
-require 'formula'
+require "formula"
class Daq < Formula
- homepage 'http://www.snort.org/'
- url 'http://www.snort.org/downloads/snort/daq-2.0.2.tar.gz'
- sha1 'def1a5b28fd16758aeb85a02f3813250014d4d75'
+ homepage "http://www.snort.org/"
+ url "https://www.snort.org/downloads/snort/daq-2.0.4.tar.gz"
+ sha1 "f2d798e303959c8f2d4a31481f4983fc4d8ba1d9"
def install
system "./configure", "--disable-dependency-tracking",
+ "--disable-silent-rules",
"--prefix=#{prefix}"
- system "make install"
+ system "make", "install"
end
end