aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gearman.rb
blob: 5f695b60e212de2414d47e1389481307ddcf1536 (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.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