aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/monetdb.rb11
1 files changed, 5 insertions, 6 deletions
diff --git a/Library/Formula/monetdb.rb b/Library/Formula/monetdb.rb
index c769c0e10..1f68433a1 100644
--- a/Library/Formula/monetdb.rb
+++ b/Library/Formula/monetdb.rb
@@ -1,16 +1,14 @@
require 'formula'
class Monetdb < Formula
- url 'http://dev.monetdb.org/downloads/sources/Dec2011/MonetDB-11.7.5.tar.bz2'
- sha1 '67444140c9ef015c7e18bc26faa69f33c1a1220c'
homepage 'http://www.monetdb.org/'
+ url 'http://dev.monetdb.org/downloads/sources/Apr2012-SP1/MonetDB-11.9.5.tar.bz2'
+ sha1 '28b0b86a417581414e506664ab03a1bd6b9d94c7'
head 'http://dev.monetdb.org/hg/MonetDB', :using => :hg
depends_on 'pcre'
-
- # Compilation fails with the libedit library provided by OSX.
- depends_on 'readline'
+ depends_on 'readline' # Compilation fails with libedit.
def install
system "./bootstrap" if ARGV.build_head?
@@ -19,7 +17,8 @@ class Monetdb < Formula
"--enable-debug=no",
"--enable-assert=no",
"--enable-optimize=yes",
- "--enable-testing=no"
+ "--enable-testing=no",
+ "--without-rubygem"
system "make install"
end
end