RethinkDB 1.5.0

Closes Homebrew/homebrew#19867.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Etienne Laurin 2013-05-16 09:18:06 -07:00 committed by Adam Vandenberg
parent 11675072b0
commit 4ef4e5eb4c

View file

@ -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