64 lines
1.8 KiB
Ruby
64 lines
1.8 KiB
Ruby
require 'formula'
|
|
|
|
class Rethinkdb < Formula
|
|
homepage 'http://www.rethinkdb.com/'
|
|
url 'http://download.rethinkdb.com/dist/rethinkdb-1.12.4.tgz'
|
|
sha1 '2333f46d5164512ac13778075e082f660c0f2681'
|
|
|
|
bottle do
|
|
sha1 "82a8e16ca2f0485b5c91cd79b912482ecf904628" => :mavericks
|
|
sha1 "d2897c77e2f2aafe51ddbe64372b245e6fd8ac2a" => :mountain_lion
|
|
sha1 "d9de30e12059296ba6af087466f0e028fb73567c" => :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"
|
|
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
|