require 'formula' class Mongodb < Formula homepage 'http://www.mongodb.org/' if Hardware.is_64_bit? and not ARGV.build_32_bit? url 'http://fastdl.mongodb.org/osx/mongodb-osx-x86_64-2.0.4.tgz' md5 '0d8dddfe267f6ba0ce36baa82afa6947' version '2.0.4-x86_64' else url 'http://fastdl.mongodb.org/osx/mongodb-osx-i386-2.0.4.tgz' md5 '37df92b98d6bd22d06c394966f8c3b8b' version '2.0.4-i386' end skip_clean :all def options [['--32-bit', 'Build 32-bit only.']] end def install # Copy the prebuilt binaries to prefix prefix.install Dir['*'] # 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 plist_path.write startup_plist plist_path.chmod 0644 end def caveats; <<-EOS.undent If this is your first install, automatically load on login with: mkdir -p ~/Library/LaunchAgents cp #{plist_path} ~/Library/LaunchAgents/ launchctl load -w ~/Library/LaunchAgents/#{plist_path.basename} If this is an upgrade and you already have the #{plist_path.basename} loaded: launchctl unload -w ~/Library/LaunchAgents/#{plist_path.basename} cp #{plist_path} ~/Library/LaunchAgents/ launchctl load -w ~/Library/LaunchAgents/#{plist_path.basename} Or start it manually: mongod run --config #{prefix}/mongod.conf 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 EOS end def mongodb_conf; <<-EOS.undent # Store data in #{var}/mongodb instead of the default /data/db dbpath = #{var}/mongodb # Only accept local connections bind_ip = 127.0.0.1 EOS end def startup_plist return <<-EOS Label #{plist_name} ProgramArguments #{HOMEBREW_PREFIX}/bin/mongod run --config #{etc}/mongod.conf RunAtLoad KeepAlive UserName #{`whoami`.chomp} WorkingDirectory #{HOMEBREW_PREFIX} StandardErrorPath #{var}/log/mongodb/output.log StandardOutPath #{var}/log/mongodb/output.log EOS end end