2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-05 22:14:47 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Mongodb < Formula
|
2009-10-01 20:18:01 +00:00
|
|
|
homepage 'http://www.mongodb.org/'
|
2009-10-27 20:20:28 +00:00
|
|
|
|
2012-02-10 05:35:01 +00:00
|
|
|
if Hardware.is_64_bit? and not ARGV.build_32_bit?
|
2012-03-21 02:29:32 +00:00
|
|
|
url 'http://fastdl.mongodb.org/osx/mongodb-osx-x86_64-2.0.4.tgz'
|
|
|
|
md5 '0d8dddfe267f6ba0ce36baa82afa6947'
|
|
|
|
version '2.0.4-x86_64'
|
2012-02-10 05:35:01 +00:00
|
|
|
else
|
2012-03-21 02:29:32 +00:00
|
|
|
url 'http://fastdl.mongodb.org/osx/mongodb-osx-i386-2.0.4.tgz'
|
|
|
|
md5 '37df92b98d6bd22d06c394966f8c3b8b'
|
|
|
|
version '2.0.4-i386'
|
2012-02-10 05:35:01 +00:00
|
|
|
end
|
2011-03-12 20:04:52 +00:00
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
skip_clean :all
|
2009-09-05 22:14:47 +00:00
|
|
|
|
2010-08-10 20:05:20 +00:00
|
|
|
def options
|
2012-02-10 05:55:25 +00:00
|
|
|
[['--32-bit', 'Build 32-bit only.']]
|
2010-08-10 20:05:20 +00:00
|
|
|
end
|
|
|
|
|
2009-09-05 22:14:47 +00:00
|
|
|
def install
|
2009-12-28 20:46:22 +00:00
|
|
|
# Copy the prebuilt binaries to prefix
|
2010-04-07 05:58:35 +00:00
|
|
|
prefix.install Dir['*']
|
2009-12-28 20:46:22 +00:00
|
|
|
|
|
|
|
# Create the data and log directories under /var
|
|
|
|
(var+'mongodb').mkpath
|
|
|
|
(var+'log/mongodb').mkpath
|
|
|
|
|
|
|
|
# Write the configuration files and launchd script
|
|
|
|
(prefix+'mongod.conf').write mongodb_conf
|
2011-12-31 05:56:52 +00:00
|
|
|
plist_path.write startup_plist
|
|
|
|
plist_path.chmod 0644
|
2009-12-28 20:46:22 +00:00
|
|
|
end
|
|
|
|
|
2012-02-10 05:55:25 +00:00
|
|
|
def caveats; <<-EOS.undent
|
2011-03-12 20:04:52 +00:00
|
|
|
If this is your first install, automatically load on login with:
|
|
|
|
mkdir -p ~/Library/LaunchAgents
|
2011-12-31 05:56:52 +00:00
|
|
|
cp #{plist_path} ~/Library/LaunchAgents/
|
|
|
|
launchctl load -w ~/Library/LaunchAgents/#{plist_path.basename}
|
2010-05-09 00:59:07 +00:00
|
|
|
|
2012-02-04 14:57:53 +00:00
|
|
|
If this is an upgrade and you already have the #{plist_path.basename} loaded:
|
2011-12-31 05:56:52 +00:00
|
|
|
launchctl unload -w ~/Library/LaunchAgents/#{plist_path.basename}
|
|
|
|
cp #{plist_path} ~/Library/LaunchAgents/
|
|
|
|
launchctl load -w ~/Library/LaunchAgents/#{plist_path.basename}
|
2009-12-28 20:46:22 +00:00
|
|
|
|
2011-03-12 20:04:52 +00:00
|
|
|
Or start it manually:
|
|
|
|
mongod run --config #{prefix}/mongod.conf
|
2011-06-19 23:24:00 +00:00
|
|
|
|
|
|
|
The launchctl plist above expects the config file to be at #{etc}/mongod.conf.
|
|
|
|
If this is a first install, you can copy one from #{prefix}/mongod.conf:
|
|
|
|
cp #{prefix}/mongod.conf #{etc}/mongod.conf
|
2011-03-12 20:04:52 +00:00
|
|
|
EOS
|
2009-12-28 20:46:22 +00:00
|
|
|
end
|
|
|
|
|
2012-02-10 05:55:25 +00:00
|
|
|
def mongodb_conf; <<-EOS.undent
|
2011-03-16 19:43:51 +00:00
|
|
|
# Store data in #{var}/mongodb instead of the default /data/db
|
|
|
|
dbpath = #{var}/mongodb
|
2009-12-28 20:46:22 +00:00
|
|
|
|
2011-03-16 19:43:51 +00:00
|
|
|
# Only accept local connections
|
|
|
|
bind_ip = 127.0.0.1
|
|
|
|
EOS
|
2009-12-28 20:46:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def startup_plist
|
|
|
|
return <<-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>
|
2012-02-04 03:28:37 +00:00
|
|
|
<string>#{plist_name}</string>
|
2009-12-28 20:46:22 +00:00
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
2011-12-31 22:13:31 +00:00
|
|
|
<string>#{HOMEBREW_PREFIX}/bin/mongod</string>
|
2009-12-28 20:46:22 +00:00
|
|
|
<string>run</string>
|
|
|
|
<string>--config</string>
|
2011-06-19 23:24:00 +00:00
|
|
|
<string>#{etc}/mongod.conf</string>
|
2009-12-28 20:46:22 +00:00
|
|
|
</array>
|
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
|
|
|
<key>KeepAlive</key>
|
2011-03-16 19:43:51 +00:00
|
|
|
<false/>
|
2009-12-28 20:46:22 +00:00
|
|
|
<key>UserName</key>
|
2010-01-16 15:48:56 +00:00
|
|
|
<string>#{`whoami`.chomp}</string>
|
2009-12-28 20:46:22 +00:00
|
|
|
<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>
|
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
EOS
|
2009-09-05 22:14:47 +00:00
|
|
|
end
|
2011-03-10 05:11:03 +00:00
|
|
|
end
|