diff options
| author | Etienne Laurin | 2013-05-16 09:18:06 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-05-16 10:18:56 -0700 |
| commit | 4887294ad71ab470d0a77dde5c4ae9f8f52a9298 (patch) | |
| tree | 71c9748de9cc1794964a255949f1b0cf70959e5f | |
| parent | 90673bf50abd465f9e1f1a17f79b4e4a3e87467c (diff) | |
| download | homebrew-4887294ad71ab470d0a77dde5c4ae9f8f52a9298.tar.bz2 | |
RethinkDB 1.5.0
Closes #19867.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/rethinkdb.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/rethinkdb.rb b/Library/Formula/rethinkdb.rb index 880e2e3fa..61e431c97 100644 --- a/Library/Formula/rethinkdb.rb +++ b/Library/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 |
