Gearman C server formula

This commit is contained in:
Alexander Solovyov 2009-11-14 11:32:52 +02:00 committed by Max Howell
parent 2dbaacec39
commit 7416d61b47

12
Formula/gearman.rb Normal file
View file

@ -0,0 +1,12 @@
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