blob: 90b1495c5af46abbf31625e6e07bd2ac8f53fd8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class Rethinkdb < Formula
homepage 'http://www.rethinkdb.com/'
url 'https://github.com/rethinkdb/rethinkdb/archive/v1.3.2.tar.gz'
sha1 '8956087fb98f32fa5a320e696e28b239afe03ab4'
depends_on 'v8'
depends_on 'node' => :build
depends_on 'protobuf' => :build
depends_on 'less' => :node
depends_on 'coffee-script' => :node
depends_on LanguageModuleDependency.new(:ruby, 'ruby_protobuf', 'protobuf/compiler/compiler')
def install
system "cd src; make DEBUG=0 FORCEVERSION=1 RETHINKDB_VERSION=#{version} PREFIX=#{prefix} WEBRESDIR=#{share}/rethinkdb/web"
bin.install 'build/release/rethinkdb'
(share/'rethinkdb').mkpath
share.install 'build/release/web' => 'rethinkdb'
end
end
|