homebrew-core/Formula/beanstalk.rb
jgeiger efed8ce335 update beanstalkd to 1.4.6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-07-20 11:39:01 -07:00

18 lines
452 B
Ruby

require 'formula'
class Beanstalk <Formula
url 'http://xph.us/dist/beanstalkd/beanstalkd-1.4.6.tar.gz'
md5 '3dbbb64a6528efaaaa841ea83b30768e'
homepage 'http://xph.us/software/beanstalkd/'
depends_on 'libevent'
aka 'beanstalkd'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--with-event=#{HOMEBREW_PREFIX}"
system "make install"
end
end