aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEtienne Laurin2013-03-15 12:35:55 -0700
committerAdam Vandenberg2013-03-15 13:00:50 -0700
commit4b2793bdbe9ec4e4ff771aa48befd8a5a332f89d (patch)
tree8aa33473fa2eb10606c64f01e5785832a7547914
parent5f4603b230c90d7ccc875f9ffe1e93900cf057b5 (diff)
downloadhomebrew-4b2793bdbe9ec4e4ff771aa48befd8a5a332f89d.tar.bz2
RethinkDB 1.4.0
Closes #18509. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/rethinkdb.rb20
1 files changed, 5 insertions, 15 deletions
diff --git a/Library/Formula/rethinkdb.rb b/Library/Formula/rethinkdb.rb
index 2e6e12c0b..bebe589dd 100644
--- a/Library/Formula/rethinkdb.rb
+++ b/Library/Formula/rethinkdb.rb
@@ -2,24 +2,14 @@ require 'formula'
class Rethinkdb < Formula
homepage 'http://www.rethinkdb.com/'
- url 'https://github.com/rethinkdb/rethinkdb/archive/v1.3.2.tar.gz'
- sha1 '8956087fb98f32fa5a320e696e28b239afe03ab4'
+ url 'http://download.rethinkdb.com/dist/rethinkdb-1.4.0.tgz'
+ sha1 'cc4f75f92aace746e5ea5fce68c0e831f6327890'
- head 'https://github.com/rethinkdb/rethinkdb.git'
-
- depends_on 'node' => :build
- depends_on 'protobuf' => :build
- depends_on 'boost' => :build
depends_on 'v8'
- depends_on 'less' => :node
- depends_on 'coffee-script' => :node
- depends_on 'handlebars' => :node if build.head?
+ depends_on 'protobuf' => :build
def install
- cd "src" do
- system "make DEBUG=0 WEBRESDIR=#{share}/rethinkdb/web"
- end
- bin.install 'build/release/rethinkdb'
- (share/'rethinkdb').install 'build/release/web'
+ system "./configure --prefix=#{prefix}"
+ system "make install-osx"
end
end