require 'formula' class Memcached < Formula homepage 'http://memcached.org/' url 'http://www.memcached.org/files/memcached-1.4.17.tar.gz' sha1 '2b4fc706d39579cf355e3358cfd27b44d40bd79c' bottle do sha1 "9659921b7f83252f74fd71c9d89b0f087a987c39" => :mavericks sha1 "56150a0077821d1758073238e8bac39f0028b6df" => :mountain_lion sha1 "f0b6c864165782512b716f71853f6e24d57fdbda" => :lion end depends_on 'libevent' option "enable-sasl", "Enable SASL support -- disables ASCII protocol!" option "enable-sasl-pwdb", "Enable SASL with memcached's own plain text password db support -- disables ASCII protocol!" conflicts_with 'mysql-cluster', :because => 'both install `bin/memcached`' def install args = ["--prefix=#{prefix}", "--disable-coverage"] args << "--enable-sasl" if build.include? "enable-sasl" args << "--enable-sasl-pwdb" if build.include? "enable-sasl-pwdb" system "./configure", *args system "make install" end plist_options :manual => "#{HOMEBREW_PREFIX}/opt/memcached/bin/memcached" def plist; <<-EOS.undent Label #{plist_name} KeepAlive ProgramArguments #{opt_prefix}/bin/memcached -l localhost RunAtLoad WorkingDirectory #{HOMEBREW_PREFIX} EOS end end