aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gearman.rb
blob: 100c4d3e7f26ecbd5caada2e4eff686afc3aba6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Gearman < Formula
  url 'http://launchpad.net/gearmand/trunk/gearman-0.16/+download/gearmand-0.16.tar.gz'
  homepage 'http://gearman.org/'
  md5 '40b37df7525345021c72bfd81cccca20'

  depends_on 'libevent'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end