0
0
Fork 0
haikuports/net-proxy/haproxy/haproxy-1.7.0.git.recipe

48 lines
949 B
Bash
Raw Permalink Normal View History

SUMMARY="Reliable, high performace TCP/HTTP load balancer"
2014-01-02 21:40:58 +00:00
DESCRIPTION="
HAProxy is a free, very fast and reliable solution offering high availability, \
load balancing, and proxying for TCP and HTTP-based applications. It is \
particularly suited for web sites crawling under very high loads while needing \
2016-02-26 15:33:51 +00:00
persistence or Layer7 processing."
2015-10-20 22:37:22 +00:00
HOMEPAGE="http://www.haproxy.org/"
COPYRIGHT="2012 Willy Tarreau"
2016-02-17 19:26:37 +00:00
LICENSE="GNU GPL v2"
REVISION="1"
SOURCE_URI="git://github.com/haproxy/haproxy.git"
PATCHES="haproxy-$portVersion.patchset"
ARCHITECTURES="?all"
PROVIDES="
haproxy = $portVersion
cmd:haproxy = $portVersion
"
REQUIRES="
haiku
"
2018-08-03 12:50:33 +00:00
BUILD_PREREQUIRES="
haiku_devel
cmd:gcc
2018-08-09 08:34:39 +00:00
cmd:make
"
BUILD()
{
make TARGET=haiku PREFIX="$prefix"
2013-03-29 14:04:07 +00:00
}
INSTALL()
{
mkdir -p "${sbinDir}"
mkdir -p "${manDir}"
mkdir -p "${docDir}"
2013-03-29 14:04:07 +00:00
make install DESTDIR="" \
PREFIX="$prefix"\
SBINDIR="${sbinDir}" \
MANDIR="${manDir}" \
DOCDIR="${docDir}"
2014-01-02 21:40:58 +00:00
}