diff options
| author | Matt Robenolt | 2014-06-19 13:08:14 -0700 |
|---|---|---|
| committer | Jack Nagel | 2014-06-19 21:12:15 -0500 |
| commit | b0c64415b2808ae82d7952772292ae981b8117c9 (patch) | |
| tree | 998a5adf9dd2725589690305f3663388aedee274 | |
| parent | 7ca8da63ab2fe0f1797ea2eb94b7e1eccf8059ef (diff) | |
| download | homebrew-b0c64415b2808ae82d7952772292ae981b8117c9.tar.bz2 | |
haproxy 1.5.0
Closes #30289.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | Library/Formula/haproxy.rb | 29 |
1 files changed, 7 insertions, 22 deletions
diff --git a/Library/Formula/haproxy.rb b/Library/Formula/haproxy.rb index 6f7f0f0c1..57efedf36 100644 --- a/Library/Formula/haproxy.rb +++ b/Library/Formula/haproxy.rb @@ -2,8 +2,8 @@ require 'formula' class Haproxy < Formula homepage 'http://haproxy.1wt.eu' - url 'http://haproxy.1wt.eu/download/1.4/src/haproxy-1.4.25.tar.gz' - sha1 'f5c7dcaf0e8190f86e58b8e106dbc53609beaacd' + url 'http://www.haproxy.org/download/1.5/src/haproxy-1.5.0.tar.gz' + sha1 'dc957d93871e4543d1850a144543bcaa26df37a0' bottle do cellar :any @@ -12,32 +12,17 @@ class Haproxy < Formula sha1 "8223c6ba3c4eaba367991b17e33efcfc30418d3f" => :lion end - devel do - url 'http://haproxy.1wt.eu/download/1.5/src/devel/haproxy-1.5-dev26.tar.gz' - sha1 'cab0d9b73dff87d159bf1ee64a127bacf88ac87f' - version '1.5-dev26' - - # we can remove it when a new version is released - # don't use type "uint" which is not portable - patch do - url "http://git.1wt.eu/web?p=haproxy.git;a=commitdiff_plain;h=c874653bb45b101f50ea710576c7b47766874d1c" - sha1 "ed16bdb9096c09b79135d5d43db9ef8581decb02" - end - 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 << "USE_ZLIB=1" - args << "ADDLIB=-lcrypto" - end + "USE_PCRE=1", + "USE_OPENSSL=1", + "USE_ZLIB=1", + "ADDLIB=-lcrypto", + ] # We build generic since the Makefile.osx doesn't appear to work system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}", "LDFLAGS=#{ENV.ldflags}", *args |
