require 'formula' class Rethinkdb < Formula homepage 'http://www.rethinkdb.com/' url 'http://download.rethinkdb.com/dist/rethinkdb-1.13.1.tgz' sha1 '07af07657c73eb19e4cc49f55ea1a33367304820' bottle do sha1 "f1eabac64903b436f489a7c1e0024ed2486690d0" => :mavericks sha1 "19e421526d9c9a4bfb4e72e940118e10294730d3" => :mountain_lion sha1 "a8a3f4cdbdc64f97d92252425b65656aaaaccc6a" => :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 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