170 lines
5 KiB
Ruby
170 lines
5 KiB
Ruby
class Mongodb < Formula
|
|
desc "High-performance, schema-free, document-oriented database"
|
|
homepage "https://www.mongodb.org/"
|
|
url "https://fastdl.mongodb.org/src/mongodb-src-r4.0.3.tar.gz"
|
|
sha256 "fbbe840e62376fe850775e98eb10fdf40594a023ecf308abec6dcec44d2bce0c"
|
|
|
|
bottle do
|
|
sha256 "e69d3b476cae2c11cc133e0ef14a6449738fa4adbaa47feacdccab5f3ec3d506" => :mojave
|
|
sha256 "3036bebd4570b76b12d6418ef70984e65310506add560345b8acafda1dd8298c" => :high_sierra
|
|
sha256 "a48d12fa04c7f3bb80d2d0c7febd653cc081b9a19d7e4431b0ed189f8e311e4f" => :sierra
|
|
end
|
|
|
|
option "with-boost", "Compile using installed boost, not the version shipped with mongodb"
|
|
option "with-sasl", "Compile with SASL support"
|
|
|
|
depends_on "go" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "scons" => :build
|
|
depends_on :xcode => ["8.3.2", :build]
|
|
depends_on :macos => :mountain_lion
|
|
depends_on "python@2"
|
|
depends_on "openssl" => :recommended
|
|
depends_on "boost" => :optional
|
|
|
|
resource "Cheetah" do
|
|
url "https://files.pythonhosted.org/packages/cd/b0/c2d700252fc251e91c08639ff41a8a5203b627f4e0a2ae18a6b662ab32ea/Cheetah-2.4.4.tar.gz"
|
|
sha256 "be308229f0c1e5e5af4f27d7ee06d90bb19e6af3059794e5fd536a6f29a9b550"
|
|
end
|
|
|
|
resource "PyYAML" do
|
|
url "https://files.pythonhosted.org/packages/9e/a3/1d13970c3f36777c583f136c136f804d70f500168edc1edea6daa7200769/PyYAML-3.13.tar.gz"
|
|
sha256 "3ef3092145e9b70e3ddd2c7ad59bdd0252a94dfe3949721633e41344de00a6bf"
|
|
end
|
|
|
|
resource "typing" do
|
|
url "https://files.pythonhosted.org/packages/bf/9b/2bf84e841575b633d8d91ad923e198a415e3901f228715524689495b4317/typing-3.6.6.tar.gz"
|
|
sha256 "4027c5f6127a6267a435201981ba156de91ad0d1d98e9ddc2aa173453453492d"
|
|
end
|
|
|
|
needs :cxx11
|
|
|
|
def install
|
|
ENV.cxx11 if MacOS.version < :mavericks
|
|
|
|
ENV.libcxx
|
|
|
|
["Cheetah", "PyYAML", "typing"].each do |r|
|
|
resource(r).stage do
|
|
system "python", *Language::Python.setup_install_args(buildpath/"vendor")
|
|
end
|
|
end
|
|
(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 << "CC=#{ENV.cc}"
|
|
args << "CXX=#{ENV.cxx}"
|
|
|
|
args << "CCFLAGS=-mmacosx-version-min=#{MacOS.version}"
|
|
args << "LINKFLAGS=-mmacosx-version-min=#{MacOS.version}"
|
|
|
|
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
|