diff options
| author | Etienne Laurin | 2013-06-13 05:47:04 -0700 |
|---|---|---|
| committer | Samuel John | 2013-06-13 17:27:40 +0200 |
| commit | 029e6d2632b34958ca407364c6160ee071e6dcb7 (patch) | |
| tree | 3c19d2e2579ade60da7dd0f143e43411c59bfdf5 /Library/Formula | |
| parent | ccbbed2ca8768090d1fae8970685d27ef8a36b69 (diff) | |
| download | homebrew-029e6d2632b34958ca407364c6160ee071e6dcb7.tar.bz2 | |
RethinkDB 1.6.0
Closes #20463.
Signed-off-by: Samuel John <github@SamuelJohn.de>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/rethinkdb.rb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/rethinkdb.rb b/Library/Formula/rethinkdb.rb index f01bf3a1b..7c90580f9 100644 --- a/Library/Formula/rethinkdb.rb +++ b/Library/Formula/rethinkdb.rb @@ -2,14 +2,15 @@ require 'formula' class Rethinkdb < Formula homepage 'http://www.rethinkdb.com/' - url 'http://download.rethinkdb.com/dist/rethinkdb-1.5.2.tgz' - sha1 'de229816f17665c12f7c116fcbbc7a7a893b3a08' + url 'http://download.rethinkdb.com/dist/rethinkdb-1.6.0.tgz' + sha1 'f25044cf1540bc2d21514901172e9ab3d31b3342' depends_on 'boost' => :build depends_on 'v8' def install - system "./configure --prefix=#{prefix} --fetch protobuf" + # Disable drivers because right now we don't build Python/Ruby bindings. Pull request welcome. + system "./configure --prefix=#{prefix} --fetch protobuf --disable-drivers" system "make" system "make install-osx" end |
