require 'formula' class Gearman < Formula homepage 'http://gearman.org/' url 'https://launchpad.net/gearmand/trunk/0.33/+download/gearmand-0.33.tar.gz' md5 '812840b74153704b5d3e7d6e59a803b5' depends_on 'pkg-config' => :build depends_on 'boost' depends_on 'libevent' depends_on 'ossp-uuid' def install system "./configure", "--prefix=#{prefix}" system "make install" 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} To start gearmand manually: gearmand -d EOS end def startup_plist; <<-EOPLIST Label #{plist_name} Program #{sbin}/gearmand RunAtLoad UserName #{`whoami`.chomp} EOPLIST end end