homebrew-core/Formula/gearman.rb
philip 2d463d6802 Updated Gearman formula from 0.10 to 0.12
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-03-17 09:16:48 -07:00

15 lines
336 B
Ruby

require 'formula'
class Gearman <Formula
url 'http://launchpad.net/gearmand/trunk/0.12/+download/gearmand-0.12.tar.gz'
homepage 'http://gearman.org/'
md5 '6e88a6bfb26e50d5aed37d143184e7f2'
depends_on 'libevent'
aka 'gearmand'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end