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

class Moxi <Formula
  url 'http://labs.northscale.com/moxi/moxi-0.10.0.tar.gz'
  homepage 'http://labs.northscale.com/moxi/'
  md5 'ec73c7521324321eb4c8b4f51f9d7373'

  depends_on 'pkg-config' => :build
  depends_on 'check'
  depends_on 'libevent'

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