suricata 1.4.5
Closes Homebrew/homebrew#21463. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
322a4aeacd
commit
596febd3b6
1 changed files with 21 additions and 0 deletions
21
Formula/suricata.rb
Normal file
21
Formula/suricata.rb
Normal file
|
@ -0,0 +1,21 @@
|
|||
require 'formula'
|
||||
|
||||
class Suricata < Formula
|
||||
homepage 'http://suricata-ids.org'
|
||||
url 'http://www.openinfosecfoundation.org/download/suricata-1.4.5.tar.gz'
|
||||
sha1 '723e111d19376dd352df4b50f3ee635a5328b01e'
|
||||
|
||||
depends_on :autoconf
|
||||
depends_on :automake
|
||||
depends_on :libtool
|
||||
depends_on 'pkg-config' => :build
|
||||
depends_on 'libnet'
|
||||
depends_on 'libyaml'
|
||||
depends_on 'pcre'
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}"
|
||||
system "make", "install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue