2009-12-11 17:56:53 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Haproxy < Formula
|
2012-02-10 02:38:26 +00:00
|
|
|
homepage 'http://haproxy.1wt.eu'
|
2012-10-21 13:38:33 +00:00
|
|
|
url 'http://haproxy.1wt.eu/download/1.4/src/haproxy-1.4.22.tar.gz'
|
|
|
|
sha1 'ed8918c950bdb5b4b96d62c23073b7972443fe94'
|
2012-03-05 02:47:42 +00:00
|
|
|
|
2012-09-06 00:38:19 +00:00
|
|
|
devel do
|
2013-04-04 12:31:30 +00:00
|
|
|
url 'http://haproxy.1wt.eu/download/1.5/src/devel/haproxy-1.5-dev18.tar.gz'
|
|
|
|
sha1 '791fba9a596c30d1bbb7871ffb8b05e1fd4ecf8b'
|
|
|
|
version '1.5-dev18'
|
2012-09-06 00:38:19 +00:00
|
|
|
end
|
|
|
|
|
2012-03-05 02:47:42 +00:00
|
|
|
depends_on 'pcre'
|
2009-12-11 17:56:53 +00:00
|
|
|
|
|
|
|
def install
|
2012-09-06 00:38:19 +00:00
|
|
|
args = ["TARGET=generic",
|
|
|
|
"USE_KQUEUE=1",
|
|
|
|
"USE_POLL=1",
|
|
|
|
"USE_PCRE=1"]
|
|
|
|
|
|
|
|
if build.devel?
|
|
|
|
args << "USE_OPENSSL=1"
|
|
|
|
args << "ADDLIB=-lcrypto"
|
|
|
|
end
|
|
|
|
|
2009-12-11 17:56:53 +00:00
|
|
|
# We build generic since the Makefile.osx doesn't appear to work
|
2012-09-06 00:38:19 +00:00
|
|
|
system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}", "LDFLAGS=#{ENV.ldflags}", *args
|
|
|
|
man1.install "doc/haproxy.1"
|
|
|
|
bin.install "haproxy"
|
2009-12-11 17:56:53 +00:00
|
|
|
end
|
|
|
|
end
|