2009-12-11 17:56:53 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Haproxy <Formula
|
2010-02-21 22:45:37 +00:00
|
|
|
url 'http://haproxy.1wt.eu/download/1.3/src/haproxy-1.3.23.tar.gz'
|
|
|
|
md5 '4ffe926ccf4f4d53f149290eb001fad5'
|
2009-12-11 17:56:53 +00:00
|
|
|
homepage 'http://haproxy.1wt.eu'
|
|
|
|
|
|
|
|
def install
|
2010-01-13 11:06:52 +00:00
|
|
|
inreplace 'Makefile' do |contents|
|
|
|
|
contents.change_make_var! 'PREFIX', prefix
|
|
|
|
contents.change_make_var! 'DOCDIR', doc
|
2010-02-22 10:47:43 +00:00
|
|
|
# use our CC, CFLAGS and LDFLAGS
|
|
|
|
contents.remove_make_var! %w[LDFLAGS CFLAGS CC]
|
2010-01-13 11:06:52 +00:00
|
|
|
end
|
2009-12-22 03:30:02 +00:00
|
|
|
|
2009-12-11 17:56:53 +00:00
|
|
|
# We build generic since the Makefile.osx doesn't appear to work
|
2010-01-13 19:03:02 +00:00
|
|
|
system "make", "TARGET=generic USE_KQUEUE=1 USE_POLL=1 USE_PCRE=1"
|
2009-12-11 17:56:53 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|