aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/rethinkdb.rb13
1 files changed, 9 insertions, 4 deletions
diff --git a/Library/Formula/rethinkdb.rb b/Library/Formula/rethinkdb.rb
index d9e863d32..6d85c6956 100644
--- a/Library/Formula/rethinkdb.rb
+++ b/Library/Formula/rethinkdb.rb
@@ -2,15 +2,20 @@ require 'formula'
class Rethinkdb < Formula
homepage 'http://www.rethinkdb.com/'
- url 'http://download.rethinkdb.com/dist/rethinkdb-1.6.1.tgz'
- sha1 'fdb3acb5febbe3f7cd4d3afd1592e5c4149f7b73'
+ url 'http://download.rethinkdb.com/dist/rethinkdb-1.7.1.tgz'
+ sha1 '83fa0196ca8ba36a809ef3605fcb6a00858005a1'
+ depends_on :macos => :lion
depends_on 'boost' => :build
depends_on 'v8'
+ fails_with :gcc do
+ build 5666 # GCC 4.2.1
+ cause 'RethinkDB uses C++0x'
+ end
+
def install
- # Disable drivers because right now we don't build Python/Ruby bindings. Pull request welcome.
- system "./configure", "--prefix=#{prefix}", "--fetch", "protobuf", "--disable-drivers"
+ system "./configure", "--prefix=#{prefix}", "--fetch", "protobuf"
system "make"
system "make install-osx"
end