homebrew-core/Formula/gearman.rb

16 lines
341 B
Ruby
Raw Normal View History

2009-11-14 09:32:52 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Gearman < Formula
url 'http://launchpad.net/gearmand/trunk/0.26/+download/gearmand-0.26.tar.gz'
2009-11-14 09:32:52 +00:00
homepage 'http://gearman.org/'
md5 '52a8cc98f649980331cc8011d47af09f'
2009-11-14 09:32:52 +00:00
2009-12-22 05:49:18 +00:00
depends_on 'libevent'
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