homebrew-core/Formula/haproxy.rb
Alexis Hildebrandt 6d68474fe9 haproxy 1.4.16
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-04 14:17:32 -05:00

20 lines
587 B
Ruby

require 'formula'
class Haproxy < Formula
url 'http://haproxy.1wt.eu/download/1.4/src/haproxy-1.4.16.tar.gz'
md5 '6480a02f97db6561bf297979e08fda83'
homepage 'http://haproxy.1wt.eu'
def install
inreplace 'Makefile' do |s|
s.change_make_var! 'PREFIX', prefix
s.change_make_var! 'DOCDIR', doc
# use our CC, CFLAGS and LDFLAGS
s.remove_make_var! %w[LDFLAGS CFLAGS CC]
end
# We build generic since the Makefile.osx doesn't appear to work
system "make", "TARGET=generic USE_KQUEUE=1 USE_POLL=1 USE_PCRE=1"
system "make install"
end
end