require "language/go" class Mongodb < Formula desc "High-performance, schema-free, document-oriented database" homepage "https://www.mongodb.org/" url "https://fastdl.mongodb.org/src/mongodb-src-r3.2.8.tar.gz" sha256 "5501e0e90c9358358e9ee20d4814643e910b847827627ed7ca1a9d90d220c0a7" bottle do sha256 "45558113845748b89958ccef0e76c84cbb1075d766fdf0f9f78dd37fd7f88701" => :el_capitan sha256 "f827db12af8896018259db5ceb1dece2c64bcff748e404d782dbe76746e1bca0" => :yosemite sha256 "e157fe2145812d6a48e400d51b95231261411c225d010cad67c940f74f4ff7aa" => :mavericks end option "with-boost", "Compile using installed boost, not the version shipped with mongodb" option "with-sasl", "Compile with SASL support" depends_on "boost" => :optional depends_on "go" => :build depends_on :macos => :mountain_lion depends_on "scons" => :build depends_on "openssl" => :recommended go_resource "github.com/mongodb/mongo-tools" do url "https://github.com/mongodb/mongo-tools.git", :tag => "r3.2.8", :revision => "2214d4d6561574f962c1dc72fefce4fe11843023" end needs :cxx11 def install ENV.cxx11 if MacOS.version < :mavericks ENV.libcxx if build.devel? # New Go tools have their own build script but the server scons "install" target is still # responsible for installing them. Language::Go.stage_deps resources, buildpath/"src" cd "src/github.com/mongodb/mongo-tools" do # https://github.com/Homebrew/homebrew/issues/40136 inreplace "build.sh", '-ldflags "-X github.com/mongodb/mongo-tools/common/options.Gitspec `git rev-parse HEAD` -X github.com/mongodb/mongo-tools/common/options.VersionStr $(git describe)"', "" args = %W[] if build.with? "openssl" args << "ssl" ENV["LIBRARY_PATH"] = Formula["openssl"].opt_lib ENV["CPATH"] = Formula["openssl"].opt_include end args << "sasl" if build.with? "sasl" system "./build.sh", *args end mkdir "src/mongo-tools" cp Dir["src/github.com/mongodb/mongo-tools/bin/*"], "src/mongo-tools/" args = %W[ --prefix=#{prefix} -j#{ENV.make_jobs} --osx-version-min=#{MacOS.version} ] args << "CC=#{ENV.cc}" args << "CXX=#{ENV.cxx}" args << "--use-sasl-client" if build.with? "sasl" args << "--use-system-boost" if build.with? "boost" args << "--use-new-tools" args << "--disable-warnings-as-errors" if MacOS.version >= :yosemite if build.with? "openssl" args << "--ssl" args << "CCFLAGS=-I#{Formula["openssl"].opt_include}" args << "LINKFLAGS=-L#{Formula["openssl"].opt_lib}" 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 systemLog: destination: file path: #{var}/log/mongodb/mongo.log logAppend: true storage: dbPath: #{var}/mongodb net: bindIp: 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 4096 SoftResourceLimits NumberOfFiles 4096 EOS end test do system "#{bin}/mongod", "--sysinfo" end end