homebrew-core/Formula/haproxy.rb
David Höppner 927b963112 haproxy: use CC as linker
Got an error when linking with ld (x86_64 symbols not found).
2010-02-22 11:47:43 +01:00

20 lines
614 B
Ruby

require 'formula'
class Haproxy <Formula
url 'http://haproxy.1wt.eu/download/1.3/src/haproxy-1.3.23.tar.gz'
md5 '4ffe926ccf4f4d53f149290eb001fad5'
homepage 'http://haproxy.1wt.eu'
def install
inreplace 'Makefile' do |contents|
contents.change_make_var! 'PREFIX', prefix
contents.change_make_var! 'DOCDIR', doc
# use our CC, CFLAGS and LDFLAGS
contents.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