homebrew-core/Formula/haproxy.rb
Adam Vandenberg 7bd947eb0b Update formulae for version 0.7
* Use new "url" features
* Use keg_only DSL
* Use "skip_clean :all" DSL
* Whitespace and style cleanups
* Make bash invocations less silly
* Use new man2-man8 helpers
* Remove "FileUtils." since it is included in Formula
* Use real names for deps instead of aliases
* ENV.x11 now updates path, so remove that from individual brews
2010-08-07 18:08:53 -07:00

20 lines
585 B
Ruby

require 'formula'
class Haproxy <Formula
url 'http://haproxy.1wt.eu/download/1.4/src/haproxy-1.4.8.tar.gz'
md5 '104f4985b37bd9bac7a33e20fb6aaadf'
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