2019-02-16 19:46:40 +00:00
|
|
|
# Maintainer: Johannes Löthberg <johannes@kyriasis.com>
|
|
|
|
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - explicitly link v5/v6 with libatomic
|
|
|
|
|
|
|
|
pkgname=haproxy
|
2021-04-26 19:46:26 +00:00
|
|
|
pkgver=2.3.10
|
2020-09-09 13:44:24 +00:00
|
|
|
pkgrel=1
|
2019-02-16 19:46:40 +00:00
|
|
|
|
|
|
|
pkgdesc='Reliable, high performance TCP/HTTP load balancer'
|
2020-02-17 19:18:07 +00:00
|
|
|
url='https://www.haproxy.org/'
|
2019-02-16 19:46:40 +00:00
|
|
|
arch=('x86_64')
|
|
|
|
license=('GPL')
|
|
|
|
|
2020-08-21 23:50:36 +00:00
|
|
|
depends=('openssl' 'pcre' 'zlib' 'libxcrypt' 'libcrypt.so' 'lua' 'systemd-libs')
|
2020-06-01 22:01:21 +00:00
|
|
|
makedepends=('systemd')
|
2019-02-16 19:46:40 +00:00
|
|
|
|
|
|
|
backup=('etc/haproxy/haproxy.cfg')
|
|
|
|
|
|
|
|
install=haproxy.install
|
|
|
|
|
2020-02-17 19:18:07 +00:00
|
|
|
source=(https://www.haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
|
2019-02-16 19:46:40 +00:00
|
|
|
haproxy.cfg
|
|
|
|
haproxy.sysusers
|
2020-10-02 01:43:55 +00:00
|
|
|
0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch)
|
2019-02-16 19:46:40 +00:00
|
|
|
|
2021-04-26 19:46:26 +00:00
|
|
|
sha256sums=('9946e0cfc83f29072b3431e37246221cf9d4a9d28a158c075714d345266f4f35'
|
2019-12-13 02:49:42 +00:00
|
|
|
'e88edeb2fe23508565e46ff485c93cfb7c2e9c64f231538452ec7ecd7ec37a42'
|
|
|
|
'b02b4088205039f0979aef0ef3e22957f493dd54eabefaee7011f2d795303b3e'
|
2020-10-02 01:43:55 +00:00
|
|
|
'81c03ef5d69f4f2ef2c7caa6722c82cda4a53b65f788a46e668ec2faa3abd8f5')
|
2019-02-16 19:46:40 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd haproxy-$pkgver
|
|
|
|
|
|
|
|
patch -p1 <"$srcdir"/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd haproxy-$pkgver
|
|
|
|
|
|
|
|
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && ADDLIB="-latomic"
|
|
|
|
make CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
|
2019-12-13 02:49:42 +00:00
|
|
|
ADDLIB=$ADDLIB \
|
2019-02-16 19:46:40 +00:00
|
|
|
CPU=generic \
|
2019-09-06 23:40:09 +00:00
|
|
|
TARGET=linux-glibc \
|
2019-02-16 19:46:40 +00:00
|
|
|
USE_GETADDRINFO=1 \
|
|
|
|
USE_OPENSSL=1 \
|
|
|
|
USE_PCRE=1 USE_PCRE_JIT=1 \
|
|
|
|
USE_ZLIB=1 \
|
|
|
|
USE_LUA=1 \
|
|
|
|
USE_SYSTEMD=1 \
|
2019-12-13 02:49:42 +00:00
|
|
|
EXTRA_OBJS="contrib/prometheus-exporter/service-prometheus.o"
|
2019-02-16 19:46:40 +00:00
|
|
|
|
|
|
|
for contrib in halog iprange ip6range systemd; do
|
|
|
|
make -C contrib/$contrib SBINDIR=/usr/bin OPTIMIZE= CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd haproxy-$pkgver
|
|
|
|
make \
|
|
|
|
PREFIX="$pkgdir"/usr \
|
|
|
|
SBINDIR="$pkgdir"/usr/bin \
|
|
|
|
DOCDIR="$pkgdir"/usr/share/$pkgname \
|
|
|
|
install
|
|
|
|
|
|
|
|
for contrib in halog iprange ip6range; do
|
|
|
|
install -Dm755 contrib/$contrib/$contrib "$pkgdir"/usr/bin/$contrib
|
|
|
|
done
|
|
|
|
|
|
|
|
install -Dm644 ../haproxy.sysusers "$pkgdir"/usr/lib/sysusers.d/haproxy.conf
|
|
|
|
install -Dm644 ../haproxy.cfg "$pkgdir"/etc/haproxy/haproxy.cfg
|
|
|
|
install -Dm644 contrib/systemd/haproxy.service \
|
|
|
|
"$pkgdir"/usr/lib/systemd/system/haproxy.service
|
2019-09-06 23:40:09 +00:00
|
|
|
cp -r examples "$pkgdir"/usr/share/haproxy/examples
|
2019-02-16 19:46:40 +00:00
|
|
|
}
|