aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorEtienne Laurin2013-07-03 08:07:46 -0700
committerAdam Vandenberg2013-07-16 20:45:27 -0700
commit75fd3ba4579b9b1fcee59ab5fbcc68ab1a59afe3 (patch)
treeba61bb252e0c88cf94b8fb02029730163b7c468b /Library
parent58eaa1dc0e91fb3d4ace93a9806ee5b9ea6bae6a (diff)
downloadhomebrew-75fd3ba4579b9b1fcee59ab5fbcc68ab1a59afe3.tar.bz2
RethinkDB 1.7.1
Closes #20989. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-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