144 lines
4 KiB
Ruby
144 lines
4 KiB
Ruby
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.9.tar.gz"
|
|
sha256 "25f8817762b784ce870edbeaef14141c7561eb6d7c14cd3197370c2f9790061b"
|
|
|
|
bottle do
|
|
sha256 "2226f31b0a1314d7961a2cd64e0e82d4b1aedf42fc7768bc311073b183f7e6d2" => :sierra
|
|
sha256 "4aeeddfe6d1ebcebc5c2e900c8f1d89204eb0c7462f3f4effa8cf26880218d2d" => :el_capitan
|
|
sha256 "c8c39ea2e6d53b35924398604c203c9fba5a07c0c5754c080315fc87c9a57532" => :yosemite
|
|
sha256 "7001fce4f27bda699bb151e0b4ba9bfc370a39344e69bbabfa8da166653c1e4d" => :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.9",
|
|
:revision => "4a4e7d30773b28cf66f75e45bc289a5d3ca49ddd",
|
|
:shallow => false
|
|
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
|
|
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
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//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}/mongod</string>
|
|
<string>--config</string>
|
|
<string>#{etc}/mongod.conf</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>KeepAlive</key>
|
|
<false/>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{HOMEBREW_PREFIX}</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>#{var}/log/mongodb/output.log</string>
|
|
<key>StandardOutPath</key>
|
|
<string>#{var}/log/mongodb/output.log</string>
|
|
<key>HardResourceLimits</key>
|
|
<dict>
|
|
<key>NumberOfFiles</key>
|
|
<integer>4096</integer>
|
|
</dict>
|
|
<key>SoftResourceLimits</key>
|
|
<dict>
|
|
<key>NumberOfFiles</key>
|
|
<integer>4096</integer>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/mongod", "--sysinfo"
|
|
end
|
|
end
|