blob: 938649bafe51f75e40657846a1679d362117e14f (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Contributor: Jeff Bilyk <jbilyk@gmail.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=haproxy
pkgver=1.7.9
_pkgmajorver=${pkgver%.*}
pkgrel=1
pkgdesc="A TCP/HTTP reverse proxy for high availability environments"
url="http://haproxy.1wt.eu"
arch="all"
license="GPL"
_luaver="5.3"
depends=""
makedepends="pcre-dev libressl-dev linux-headers lua${_luaver}-dev zlib-dev"
install="haproxy.pre-install haproxy.pre-upgrade"
subpackages="$pkgname-doc $pkgname-systemd-wrapper:wrapper"
source="http://haproxy.1wt.eu/download/${_pkgmajorver}/src/$pkgname-$pkgver.tar.gz
fix-libressl-2.5.patch
haproxy.initd
haproxy.cfg"
builddir="$srcdir/$pkgname-$pkgver"
build() {
cd "$builddir"
make \
TARGET=linux2628 \
USE_PCRE=1 \
USE_OPENSSL=1 \
USE_ZLIB=1 \
USE_LUA=1 \
LUA_LIB=/usr/lib/lua${_luaver} \
LUA_INC=/usr/include/lua${_luaver} \
CFLAGS="$CFLAGS"
}
package() {
cd "$builddir"
make install \
DESTDIR="$pkgdir" PREFIX=/usr DOCDIR=/usr/share/doc/haproxy
install -d \
"$pkgdir"/var/lib/haproxy
install -D -m 755 \
"$srcdir"/$pkgname.initd \
"$pkgdir"/etc/init.d/$pkgname
install -D -m 644 \
"$srcdir"/haproxy.cfg \
"$pkgdir"/etc/haproxy/haproxy.cfg
install -m 755 \
haproxy-systemd-wrapper \
"$pkgdir"/usr/sbin/
}
wrapper() {
pkgdesc="wrapper for restarting haproxy without losing open connections"
mkdir -p "$subpkgdir"/usr/sbin
mv "$pkgdir"/usr/sbin/haproxy-systemd-wrapper \
"$subpkgdir"/usr/sbin/
}
sha512sums="d1ed791bc9607dbeabcfc6a1853cf258e28b3a079923b63d3bf97504dd59e64a5f5f44f9da968c23c12b4279e8d45ff3bd39418942ca6f00d9d548c9a0ccfd73 haproxy-1.7.9.tar.gz
a69734b0760dacf9a3e9b69202623eb55b8a8ae75dae7a9c7ee92240636b3dfd05f640ead2be604249c86280f85f149837aa9da284e7796ecd7f9f907c439121 fix-libressl-2.5.patch
3ab277bf77fe864ec6c927118dcd70bdec0eb3c54535812d1c3c0995fa66a3ea91a73c342edeb8944caeb097d2dd1a7761099182df44af5e3ef42de6e2176d26 haproxy.initd
26bc8f8ac504fcbaec113ecbb9bb59b9da47dc8834779ebbb2870a8cadf2ee7561b3a811f01e619358a98c6c7768e8fdd90ab447098c05b82e788c8212c4c41f haproxy.cfg"
|