aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorSteffen Hausmann2012-06-09 17:10:12 +0200
committerAdam Vandenberg2012-06-10 08:46:45 -0700
commitf6d281ec31a2bd3026d8c8b0d5707f51fba8d6fa (patch)
tree4d21339ef6af6a87396f210a8a47b44d803a9e7c /Library/Formula
parent608a7598eb8da7d021011f6fefd524e84d06c30c (diff)
downloadhomebrew-f6d281ec31a2bd3026d8c8b0d5707f51fba8d6fa.tar.bz2
MonetDB 11.9.5
Compilation of rubygem is disabled as it breaks the installation of the formula. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-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