homebrew-core/Formula/gearman.rb

13 lines
294 B
Ruby
Raw Normal View History

2009-11-14 09:32:52 +00:00
require 'formula'
class Gearman <Formula
url 'http://launchpad.net/gearmand/trunk/0.10/+download/gearmand-0.10.tar.gz'
homepage 'http://gearman.org/'
md5 '74d29c260bc7096c9193d3f6af57298f'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end