homebrew-core/Formula/gearman.rb
sliver 367882bdb0 Gearmand 0.26
Closes Homebrew/homebrew#9196.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-12-23 12:56:08 -08:00

15 lines
341 B
Ruby

require 'formula'
class Gearman < Formula
url 'http://launchpad.net/gearmand/trunk/0.26/+download/gearmand-0.26.tar.gz'
homepage 'http://gearman.org/'
md5 '52a8cc98f649980331cc8011d47af09f'
depends_on 'libevent'
depends_on 'boost'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end