2013-01-28 22:44:10 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Rethinkdb < Formula
|
|
|
|
homepage 'http://www.rethinkdb.com/'
|
2013-05-16 20:08:09 +00:00
|
|
|
url 'http://download.rethinkdb.com/dist/rethinkdb-1.5.1-1.tgz'
|
|
|
|
sha1 'bea52834a3a1d1f643947efe963907898f9d7c9e'
|
2013-01-28 22:44:10 +00:00
|
|
|
|
2013-05-16 16:18:06 +00:00
|
|
|
depends_on 'boost' => :build
|
2013-01-31 22:01:58 +00:00
|
|
|
depends_on 'v8'
|
2013-01-28 22:44:10 +00:00
|
|
|
|
|
|
|
def install
|
2013-05-16 16:18:06 +00:00
|
|
|
system "./configure --prefix=#{prefix} --fetch protobuf --fetch protoc"
|
|
|
|
system "make"
|
2013-03-15 19:35:55 +00:00
|
|
|
system "make install-osx"
|
2013-01-28 22:44:10 +00:00
|
|
|
end
|
|
|
|
end
|