homebrew-core/Formula/rethinkdb.rb
BrewTestBot 6733831079 rethinkdb: update 1.14.0 bottle.
Closes Homebrew/homebrew#31906.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-08-26 19:07:22 +01:00

66 lines
1.8 KiB
Ruby

require "formula"
class Rethinkdb < Formula
homepage "http://www.rethinkdb.com/"
url "http://download.rethinkdb.com/dist/rethinkdb-1.14.0.tgz"
sha1 "508b33661b9804ebd265484ad558abc86ae20815"
bottle do
sha1 "b51a3b7761bfb606ade9ed53b080146e7f858b36" => :mavericks
sha1 "94307060be233491da2a6c56881d13211e6d3b9e" => :mountain_lion
sha1 "013aac796be889a8073e17651da19e1cae232a42" => :lion
end
depends_on :macos => :lion
depends_on "boost" => :build
fails_with :gcc do
build 5666 # GCC 4.2.1
cause "RethinkDB uses C++0x"
end
def install
args = ["--prefix=#{prefix}"]
# brew's v8 is too recent. rethinkdb uses an older v8 API
args += ["--fetch", "v8"]
# rethinkdb requires that protobuf be linked against libc++
# but brew's protobuf is sometimes linked against libstdc++
args += ["--fetch", "protobuf"]
system "./configure", *args
system "make"
system "make", "install-osx"
mkdir_p "#{var}/log/rethinkdb"
end
def plist; <<-EOS.undent
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>ProgramArguments</key>
<array>
<string>#{opt_bin}/rethinkdb</string>
<string>-d</string>
<string>#{var}/rethinkdb</string>
</array>
<key>WorkingDirectory</key>
<string>#{HOMEBREW_PREFIX}</string>
<key>StandardOutPath</key>
<string>#{var}/log/rethinkdb/rethinkdb.log</string>
<key>StandardErrorPath</key>
<string>#{var}/log/rethinkdb/rethinkdb.log</string>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
</dict>
</plist>
EOS
end
end