diff options
| author | Brett Koonce | 2014-11-02 20:42:04 -0800 |
|---|---|---|
| committer | Mike McQuaid | 2014-11-03 08:24:08 +0000 |
| commit | 6a66e0d2182a5be90bf870a963e00e3cf91dba39 (patch) | |
| tree | c670d38b14c34e3675540845705354472fdacb0b /Library/Formula | |
| parent | 34d14b57f004bb26d27a556c729dda5ddef4a9aa (diff) | |
| download | homebrew-6a66e0d2182a5be90bf870a963e00e3cf91dba39.tar.bz2 | |
MonetDB 11.19.3
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/monetdb.rb | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/Library/Formula/monetdb.rb b/Library/Formula/monetdb.rb index 45eaec43f..9b2d20ee7 100644 --- a/Library/Formula/monetdb.rb +++ b/Library/Formula/monetdb.rb @@ -1,9 +1,9 @@ -require 'formula' +require "formula" class Monetdb < Formula - homepage 'https://www.monetdb.org/' - url 'https://dev.monetdb.org/downloads/sources/Jan2014-SP3/MonetDB-11.17.21.zip' - sha1 '53ee8de943ec2a247cf8b2bf645bc0a1b8fd5fc8' + homepage "https://www.monetdb.org/" + url "https://dev.monetdb.org/downloads/sources/Oct2014/MonetDB-11.19.3.zip" + sha1 "f8290358c1773afc2679d9cbfea456c691f50527" bottle do sha1 "fd10ee968f89f090ed519474aab1b564bc9f54f8" => :mavericks @@ -11,14 +11,15 @@ class Monetdb < Formula sha1 "c04629aeed599972e59cc5e74c166c52be1dde19" => :lion end - head 'http://dev.monetdb.org/hg/MonetDB', :using => :hg + head "http://dev.monetdb.org/hg/MonetDB", :using => :hg - option 'with-java' + option "with-java" - depends_on 'pkg-config' => :build + depends_on "pkg-config" => :build depends_on :ant => :build - depends_on 'pcre' - depends_on 'readline' # Compilation fails with libedit. + depends_on "pcre" + depends_on "readline" # Compilation fails with libedit. + depends_on "openssl" def install system "./bootstrap" if build.head? @@ -31,7 +32,7 @@ class Monetdb < Formula "--disable-jaql", "--without-rubygem"] - args << "--with-java=no" if build.without? 'java' + args << "--with-java=no" if build.without? "java" system "./configure", *args system "make install" |
