require "formula" class Rethinkdb < Formula homepage "http://www.rethinkdb.com/" url "http://download.rethinkdb.com/dist/rethinkdb-1.14.1.tgz" sha1 "9e2973f263bedec1cf3b9dd9eed173967ea34062" bottle do sha1 "a6acb3103b6a45c7e629e5e11e8569ee70b31759" => :mavericks sha1 "438114cc6fbc9c0c2435f74129b691254ae48130" => :mountain_lion sha1 "a045804c66cd0d409587ca3665763d71f7733684" => :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 Label #{plist_name} ProgramArguments #{opt_bin}/rethinkdb -d #{var}/rethinkdb WorkingDirectory #{HOMEBREW_PREFIX} StandardOutPath #{var}/log/rethinkdb/rethinkdb.log StandardErrorPath #{var}/log/rethinkdb/rethinkdb.log RunAtLoad KeepAlive EOS end end