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

class Gearman < Formula
  url 'http://launchpad.net/gearmand/trunk/0.18/+download/gearmand-0.18.tar.gz'
  homepage 'http://gearman.org/'
  md5 '07374f1d9990925e41527276f13a0628'

  depends_on 'libevent'
  depends_on 'boost'

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