Skip to content

Instantly share code, notes, and snippets.

@flashfabrixx
Created July 26, 2014 08:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flashfabrixx/d14d43f2b7cc56b08504 to your computer and use it in GitHub Desktop.
Save flashfabrixx/d14d43f2b7cc56b08504 to your computer and use it in GitHub Desktop.
Homebrew script for MongoDB on Mac OS X 10.10
require "formula"
class Mongodb < Formula
homepage "http://www.mongodb.org/"
url "http://downloads.mongodb.org/src/mongodb-src-r2.6.3.tar.gz"
sha1 "226ab45e3a2e4d4a749271f1bce393ea8358d3dd"
bottle do
sha1 "d573717ca7c67455680a6823de210c940faf9ac6" => :mavericks
sha1 "f7d2a0711e3ac09fd61bcb243360c1a07fb83233" => :mountain_lion
sha1 "b646f64abf52bcc594e690ca2c95143685ade864" => :lion
end
devel do
url "http://downloads.mongodb.org/src/mongodb-src-r2.7.3.tar.gz"
sha1 "53f832b31b49063a60100bbe1be65015efcd3ccf"
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=10.9
]
# --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
<?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>1024</integer>
</dict>
<key>SoftResourceLimits</key>
<dict>
<key>NumberOfFiles</key>
<integer>1024</integer>
</dict>
</dict>
</plist>
EOS
end
test do
system "#{bin}/mongod", "--sysinfo"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment