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

class Libevent <Formula
  version '1.4.13'
  url "http://www.monkey.org/~provos/libevent-#{@version}-stable.tar.gz"
  homepage 'http://www.monkey.org/~provos/libevent/'
  md5 '0b3ea18c634072d12b3c1ee734263664'

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