aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJustin Azoff2013-11-17 18:13:05 -0500
committerJack Nagel2013-11-17 19:41:58 -0600
commit675fa39d60f15a4133e0e36fb4d2cced32d6d72d (patch)
treef73687b0774111e0390d238360e3ab5c35709874 /Library
parenteb4ebd8cf90c1850da0a62097b18ee5aaef157a5 (diff)
downloadhomebrew-675fa39d60f15a4133e0e36fb4d2cced32d6d72d.tar.bz2
bro 2.2
--disable-ruby is no longer needed, from the upstream NEWS file: Due to lack of maintenance the Ruby bindings for Broccoli are now deprecated, and the build process no longer includes them by default. For the time being, they can still be enabled by configuring with —enable-ruby, however we plan to remove Broccoli’s Ruby support with the next Bro release. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/bro.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/Library/Formula/bro.rb b/Library/Formula/bro.rb
index ce9e4facd..213a9cb05 100644
--- a/Library/Formula/bro.rb
+++ b/Library/Formula/bro.rb
@@ -2,8 +2,8 @@ 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'
+ url 'http://www.bro-ids.org/downloads/release/bro-2.2.tar.gz'
+ sha1 'cd70c426ca0369f16919cf45ad3222e6287908df'
depends_on 'cmake' => :build
depends_on 'swig' => :build
@@ -11,8 +11,7 @@ class Bro < Formula
def install
# Ruby bindings not building for me on 10.6 - @adamv
- system "./configure", "--prefix=#{prefix}",
- "--disable-ruby"
+ system "./configure", "--prefix=#{prefix}"
system "make install"
end
end