blob: ce9e4facdf02f3c6c636e8eab6ab2841590af2e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Bro < Formula
homepage 'http://www.bro-ids.org/'
url 'http://www.bro-ids.org/downloads/release/bro-2.1.tar.gz'
sha1 'c000a19831d46ecd448e1ec40ed84abfcf496b6f'
depends_on 'cmake' => :build
depends_on 'swig' => :build
depends_on 'libmagic'
def install
# Ruby bindings not building for me on 10.6 - @adamv
system "./configure", "--prefix=#{prefix}",
"--disable-ruby"
system "make install"
end
end
|