diff options
| author | Jeremy Whitlock | 2011-06-21 23:40:08 -0600 |
|---|---|---|
| committer | Jack Nagel | 2011-08-27 21:25:36 -0500 |
| commit | cf653d155722c1e83139756a199a6a2a624da38f (patch) | |
| tree | 842416cd0243a95805789bac068ca2002e5aaf6b /Library/Formula | |
| parent | e8684a7a0ceddf8cbc1bdf19ade526960093f50a (diff) | |
| download | homebrew-cf653d155722c1e83139756a199a6a2a624da38f.tar.bz2 | |
daq 0.5
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/daq.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/daq.rb b/Library/Formula/daq.rb new file mode 100644 index 000000000..cbe41183a --- /dev/null +++ b/Library/Formula/daq.rb @@ -0,0 +1,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 |
