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

class Libevent <Formula
  url "http://www.monkey.org/~provos/libevent-1.4.14b-stable.tar.gz"
  homepage 'http://www.monkey.org/~provos/libevent/'
  md5 'a00e037e4d3f9e4fe9893e8a2d27918c'
  head 'git://levent.git.sourceforge.net/gitroot/levent/levent'

  def install
    system "./autogen.sh" if ARGV.build_head?

    ENV.j1 # Needed for Mac Pro compilation
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end