2009-11-14 09:32:52 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Gearman <Formula
|
2011-02-22 22:07:48 +00:00
|
|
|
url 'http://launchpad.net/gearmand/trunk/gearman-0.16/+download/gearmand-0.16.tar.gz'
|
2009-11-14 09:32:52 +00:00
|
|
|
homepage 'http://gearman.org/'
|
2011-02-22 22:07:48 +00:00
|
|
|
md5 '40b37df7525345021c72bfd81cccca20'
|
2009-11-14 09:32:52 +00:00
|
|
|
|
2009-12-22 05:49:18 +00:00
|
|
|
depends_on 'libevent'
|
|
|
|
|
2009-11-14 09:32:52 +00:00
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|