homebrew-core/Formula/rethinkdb.rb
Etienne Laurin b49f33c7eb RethinkDB 1.5.2
Closes Homebrew/homebrew#20052.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-05-24 12:39:02 -07:00

16 lines
381 B
Ruby

require 'formula'
class Rethinkdb < Formula
homepage 'http://www.rethinkdb.com/'
url 'http://download.rethinkdb.com/dist/rethinkdb-1.5.2.tgz'
sha1 'de229816f17665c12f7c116fcbbc7a7a893b3a08'
depends_on 'boost' => :build
depends_on 'v8'
def install
system "./configure --prefix=#{prefix} --fetch protobuf"
system "make"
system "make install-osx"
end
end