homebrew-core/Formula/gearman.rb
Clint Shryock 099bdb045e Update Gearmand to 0.16 https://launchpad.net/gearmand/+download
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-02-22 17:38:31 -08:00

14 lines
327 B
Ruby

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