homebrew-core/Formula/libevent.rb

19 lines
597 B
Ruby
Raw Normal View History

require 'formula'
2009-08-30 00:07:52 +00:00
2011-03-10 05:11:03 +00:00
class Libevent < Formula
url "https://github.com/downloads/libevent/libevent/libevent-2.0.16-stable.tar.gz"
homepage 'http://www.monkey.org/~provos/libevent/'
sha1 '9eb9fe3c0ec607525ed2dee6827687efcd0696ac'
2010-03-16 20:02:34 +00:00
head 'git://levent.git.sourceforge.net/gitroot/levent/levent'
2009-08-30 00:07:52 +00:00
2011-03-21 21:24:22 +00:00
fails_with_llvm "Undefined symbol '_current_base' reported during linking.", :build => 2326
2010-09-27 20:08:08 +00:00
2011-03-21 21:24:22 +00:00
def install
ENV.j1 # Needed for Mac Pro compilation
system "./autogen.sh" if ARGV.build_head?
system "./configure", "--prefix=#{prefix}"
system "make"
2009-08-30 00:07:52 +00:00
system "make install"
end
end