homebrew-core/Formula/haproxy.rb
Christoffer Lund 9c530be624 haproxy devel 1.5-dev12
Closes Homebrew/homebrew#15841.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-04 08:34:43 -08:00

32 lines
838 B
Ruby

require 'formula'
class Haproxy < Formula
homepage 'http://haproxy.1wt.eu'
url 'http://haproxy.1wt.eu/download/1.4/src/haproxy-1.4.22.tar.gz'
sha1 'ed8918c950bdb5b4b96d62c23073b7972443fe94'
devel do
url 'http://haproxy.1wt.eu/download/1.5/src/devel/haproxy-1.5-dev12.tar.gz'
sha1 'afe1a8afd4aef3cabe78c71bdb2ff892b146b47c'
version '1.5-dev12'
end
depends_on 'pcre'
def install
args = ["TARGET=generic",
"USE_KQUEUE=1",
"USE_POLL=1",
"USE_PCRE=1"]
if build.devel?
args << "USE_OPENSSL=1"
args << "ADDLIB=-lcrypto"
end
# We build generic since the Makefile.osx doesn't appear to work
system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}", "LDFLAGS=#{ENV.ldflags}", *args
man1.install "doc/haproxy.1"
bin.install "haproxy"
end
end