monetdb 11.21.5

MonetDB 11.21.5

Also add an option to build the Ruby driver (it no longer requires root permissions to install)

Closes Homebrew/homebrew#43362.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
This commit is contained in:
Dimitar Nedev 2015-08-28 17:37:51 +02:00 committed by Dominyk Tiller
parent e5792166a5
commit 8e124cb41d

View file

@ -16,8 +16,8 @@ end
class Monetdb < Formula
desc "Column-store database"
homepage "https://www.monetdb.org/"
url "https://dev.monetdb.org/downloads/sources/Oct2014-SP4/MonetDB-11.19.15.zip"
sha256 "bb32560bd66496581416abcf8f84dfe13616f405092f9ee570e1411534af635c"
url "https://dev.monetdb.org/downloads/sources/Jul2015/MonetDB-11.21.5.zip"
sha256 "ed9f40a68a8a9af0723cde6380492cae28082c900eae06cc4d3266c15fe540ea"
bottle do
sha256 "41605243b56eb90d354d970de4815f09e79f0920494e1a698457c69877018ac1" => :yosemite
@ -34,7 +34,8 @@ class Monetdb < Formula
depends_on "autoconf" => :build
end
option "with-java", "Build the JDBC dirver"
option "with-java", "Build the JDBC driver"
option "with-ruby", "Build the Ruby driver"
option "with-r", "Build the R integration module"
depends_on RRequirement => :optional
@ -61,10 +62,10 @@ class Monetdb < Formula
"--enable-assert=no",
"--enable-optimize=yes",
"--enable-testing=no",
"--with-readline=#{Formula["readline"].opt_prefix}", # Use the correct readline
"--without-rubygem"] # Installing the RubyGems requires root permissions
"--with-readline=#{Formula["readline"].opt_prefix}"]
args << "--with-java=no" if build.without? "java"
args << "--with-rubygem=no" if build.without? "ruby"
args << "--disable-rintegration" if build.without? "r"
system "./configure", *args