homebrew-core/Formula/mongodb@3.4.rb
2018-08-26 14:18:05 +02:00

146 lines
4.1 KiB
Ruby

class MongodbAT34 < Formula
desc "High-performance, schema-free, document-oriented database"
homepage "https://www.mongodb.org/"
url "https://fastdl.mongodb.org/src/mongodb-src-r3.4.14.tar.gz"
sha256 "bbed7821560cc3c9e3215708e34243e20d490891b08a39f216188398ede9d790"
bottle do
sha256 "5ab02d2ca2f40c585de6aff3422da6be33e18e2a3d3c3589881975ba32f968d0" => :mojave
sha256 "a3a784e75234eb5651a4b1bf3a4cef4ad7f4df70f75d6ab827930d31c9b1d2f6" => :high_sierra
sha256 "13b9f0745052a6a1aef4f624c810c05c16817e966ae564a9bc7b0cb55ff4e3d4" => :sierra
sha256 "83c48d38953e20c8838b5b3471d9f93dccae76328e2b2a8e25002c8f3ade582a" => :el_capitan
end
keg_only :versioned_formula
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
needs :cxx11
def install
ENV.cxx11 if MacOS.version < :mavericks
(buildpath/".brew_home/Library/Python/2.7/lib/python/site-packages/vendor.pth").write <<~EOS
import site; site.addsitedir("#{buildpath}/vendor/lib/python2.7/site-packages")
EOS
# New Go tools have their own build script but the server scons "install" target is still
# responsible for installing them.
cd "src/mongo/gotools" do
inreplace "build.sh" do |s|
s.gsub! "$(git describe)", version.to_s
s.gsub! "$(git rev-parse HEAD)", "homebrew"
end
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
(buildpath/"src/mongo-tools").install Dir["src/mongo/gotools/bin/*"]
args = %W[
--prefix=#{prefix}
-j#{ENV.make_jobs}
]
args << "--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 << "--build-mongoreplay=true"
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"
end
def post_install
(var/"mongodb").mkpath
(var/"log/mongodb").mkpath
end
def mongodb_conf; <<~EOS
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
<?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