homebrew-core/Formula/libevent.rb
Kashif Rasul 0e3abd3735 libevent 2.0.12
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-06-18 09:30:07 -07:00

17 lines
549 B
Ruby

require 'formula'
class Libevent < Formula
url "http://monkey.org/~provos/libevent-2.0.12-stable.tar.gz"
homepage 'http://www.monkey.org/~provos/libevent/'
md5 '42986228baf95e325778ed328a93e070'
head 'git://levent.git.sourceforge.net/gitroot/levent/levent'
fails_with_llvm "Undefined symbol '_current_base' reported during linking.", :build => 2326
def install
ENV.j1 # Needed for Mac Pro compilation
system "./autogen.sh" if ARGV.build_head?
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end