aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gearman.rb
blob: eb170bd61b0d5d2d8e12efbb99700f695b77841d (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/0.12/+download/gearmand-0.12.tar.gz'
  homepage 'http://gearman.org/'
  md5 '6e88a6bfb26e50d5aed37d143184e7f2'

  depends_on 'libevent'

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