require "formula" class Mongodb < Formula homepage "http://www.mongodb.org/" url "http://downloads.mongodb.org/src/mongodb-src-r2.6.1.tar.gz" sha1 "3e069329e93a45f14bb86618eceea08d376dbc82" bottle do sha1 "091cafed1db9c96b4487a806f61df8ba0c3523b4" => :mavericks sha1 "3a91d1ed6e1e75f48e6fc241a0cc3fba9d8aa810" => :mountain_lion sha1 "3ffe58f9e71dfd0700e08651f272f7a511dbb8d2" => :lion end devel do url "http://downloads.mongodb.org/src/mongodb-src-r2.7.1.tar.gz" sha1 "c38646cdc0452eabe78c088c61e0f3d4cd87e1ec" end head "https://github.com/mongodb/mongo.git" option "with-boost", "Compile using installed boost, not the version shipped with mongodb" depends_on "boost" => :optional depends_on "scons" => :build depends_on "openssl" => :optional def install args = %W[ --prefix=#{prefix} -j#{ENV.make_jobs} --cc=#{ENV.cc} --cxx=#{ENV.cxx} --osx-version-min=#{MacOS.version} ] # --full installs development headers and client library, not just binaries # (only supported pre-2.7) args << "--full" if build.stable? args << "--use-system-boost" if build.with? "boost" args << "--64" if MacOS.prefer_64_bit? if build.with? "openssl" args << "--ssl" << "--extrapath=#{Formula["openssl"].opt_prefix}" end scons "install", *args (buildpath+"mongod.conf").write mongodb_conf etc.install "mongod.conf" (var+"mongodb").mkpath (var+"log/mongodb").mkpath end def mongodb_conf; <<-EOS.undent # Store data in #{var}/mongodb instead of the default /data/db dbpath = #{var}/mongodb # Append logs to #{var}/log/mongodb/mongo.log logpath = #{var}/log/mongodb/mongo.log logappend = true # Only accept local connections bind_ip = 127.0.0.1 EOS end plist_options :manual => "mongod --config #{HOMEBREW_PREFIX}/etc/mongod.conf" def plist; <<-EOS.undent Label #{plist_name} ProgramArguments #{opt_bin}/mongod --config #{etc}/mongod.conf RunAtLoad KeepAlive WorkingDirectory #{HOMEBREW_PREFIX} StandardErrorPath #{var}/log/mongodb/output.log StandardOutPath #{var}/log/mongodb/output.log HardResourceLimits NumberOfFiles 1024 SoftResourceLimits NumberOfFiles 1024 EOS end test do system "#{bin}/mongod", "--sysinfo" end end