blob: 6790348b66235fd0c84344bc299a13c274c3ff7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
require 'formula'
class Haproxy < Formula
homepage 'http://haproxy.1wt.eu'
url 'http://haproxy.1wt.eu/download/1.4/src/haproxy-1.4.23.tar.gz'
sha1 'a171a98e58a853e6487ff768db53a496012fd704'
devel do
url 'http://haproxy.1wt.eu/download/1.5/src/devel/haproxy-1.5-dev18.tar.gz'
sha1 '791fba9a596c30d1bbb7871ffb8b05e1fd4ecf8b'
version '1.5-dev18'
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
|