diff --git a/Formula/rethinkdb.rb b/Formula/rethinkdb.rb index 880e2e3fa4..61e431c973 100644 --- a/Formula/rethinkdb.rb +++ b/Formula/rethinkdb.rb @@ -2,15 +2,15 @@ require 'formula' class Rethinkdb < Formula homepage 'http://www.rethinkdb.com/' - url 'http://download.rethinkdb.com/dist/rethinkdb-1.4.5.tgz' - sha1 '3e9f8472cb70f0a712be92c0a2c52e4f299f4bd7' + url 'http://download.rethinkdb.com/dist/rethinkdb-1.5.0.tgz' + sha1 '6e937fcf2c55d3a802037914f05c78ff0884af4d' - depends_on 'boost' + depends_on 'boost' => :build depends_on 'v8' - depends_on 'protobuf' => :build def install - system "./configure", "--prefix=#{prefix}" + system "./configure --prefix=#{prefix} --fetch protobuf --fetch protoc" + system "make" system "make install-osx" end end