2009-11-14 09:32:52 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Gearman < Formula
|
2011-07-29 14:01:18 +00:00
|
|
|
url 'http://launchpad.net/gearmand/trunk/0.24/+download/gearmand-0.24.tar.gz'
|
2009-11-14 09:32:52 +00:00
|
|
|
homepage 'http://gearman.org/'
|
2011-07-29 14:01:18 +00:00
|
|
|
md5 '7cd3bfedd37fd8f2d2c9a59333e08c8c'
|
2009-11-14 09:32:52 +00:00
|
|
|
|
2009-12-22 05:49:18 +00:00
|
|
|
depends_on 'libevent'
|
2011-03-16 12:37:55 +00:00
|
|
|
depends_on 'boost'
|
2009-12-22 05:49:18 +00:00
|
|
|
|
2009-11-14 09:32:52 +00:00
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|