31 lines
1.1 KiB
Bash
31 lines
1.1 KiB
Bash
# Template file for 'haproxy'
|
|
pkgname=haproxy
|
|
version=1.5.14
|
|
revision=2
|
|
build_style=gnu-makefile
|
|
make_build_args="TARGET=linux2628 USE_PCRE=1 USE_PCRE_JIT=1 USE_ZLIB=1
|
|
USE_OPENSSL=1 USE_LIBCRYPT=1 USE_GETADDRINFO=1"
|
|
make_install_args="SBINDIR=${DESTDIR}/usr/bin DOCDIR=${DESTDIR}/usr/share/doc/$pkgname"
|
|
conf_files="/etc/${pkgname}/${pkgname}.cfg"
|
|
system_accounts="${pkgname}"
|
|
haproxy_homedir="/var/lib/${pkgname}"
|
|
make_dirs="$haproxy_homedir 0750 ${pkgname} ${pkgname}"
|
|
makedepends="libressl-devel pcre-devel zlib-devel"
|
|
short_desc="Reliable, high performance TCP/HTTP load balancer"
|
|
maintainer="Eivind Uggedal <eivind@uggedal.com>"
|
|
license="GPL-2 LGPL-2.1"
|
|
homepage="http://www.haproxy.org"
|
|
distfiles="${homepage}/download/${version%.*}/src/${pkgname}-${version}.tar.gz"
|
|
checksum=9565dd38649064d0350a2883fa81ccfe92eb17dcda457ebdc01535e1ab0c8f99
|
|
|
|
do_build() {
|
|
sed -e '/install haproxy-systemd-wrapper/d' -i Makefile
|
|
make ${makejobs} CC="$CC" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \
|
|
${make_build_args}
|
|
}
|
|
|
|
post_install() {
|
|
vinstall ${FILESDIR}/${pkgname}.cfg 644 etc/${pkgname}
|
|
vsv ${pkgname}
|
|
}
|