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

  depends_on 'libevent'
  aka 'gearmand'

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