diff options
| author | Steffen Hausmann | 2011-09-30 11:31:48 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2012-02-04 19:19:38 -0800 |
| commit | aa6d309c5fb07040e4d822119ee919749354703e (patch) | |
| tree | 4d523286ccf97b9dee11dce81cd2eddaa3994428 /Library/Formula | |
| parent | 1f64b3934a3de30731dfc6e39ecbd207b7f06041 (diff) | |
| download | homebrew-aa6d309c5fb07040e4d822119ee919749354703e.tar.bz2 | |
MonetDB 11.7.5
MonetDB is an open source column-store database system.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/monetdb.rb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Library/Formula/monetdb.rb b/Library/Formula/monetdb.rb new file mode 100644 index 000000000..c769c0e10 --- /dev/null +++ b/Library/Formula/monetdb.rb @@ -0,0 +1,25 @@ +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/' + + head 'http://dev.monetdb.org/hg/MonetDB', :using => :hg + + depends_on 'pcre' + + # Compilation fails with the libedit library provided by OSX. + depends_on 'readline' + + def install + system "./bootstrap" if ARGV.build_head? + + system "./configure", "--prefix=#{prefix}", + "--enable-debug=no", + "--enable-assert=no", + "--enable-optimize=yes", + "--enable-testing=no" + system "make install" + end +end |
