blob: 19b7c4f6425c758d98b212b010c4e7153db2dc69 (
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
|
# This is a PKGBUILD file that builds keepalived from source and deploys it as an
# openrc service - nothing fancy, nothing special.
# Maintainer: drad <sa@adercon.com>
# Contributor: krad <krad@adercon.com>
# Contributor: arad <arad@adercon.com>
# Contributor: nrad <nrad@adercon.com>
pkgname=keepalived-openrc
_pkgname=keepalived
pkgver="2.3.1"
pkgrel="6"
pkgdesc="keepalived bundled as an openrc based service"
arch=("x86_64")
url='https://gitlab.com/drad/keepalived'
license=('GPL3')
depends=(openrc)
makedepends=('gcc' 'openssl' 'libnl' 'net-snmp')
install=keepalived.install
#changelog=CHANGELOG.md
source=("$_pkgname-$pkgver.tar.gz::https://www.keepalived.org/software/$_pkgname-$pkgver.tar.gz")
md5sums=('5434ebc3becb6f86ebc3adc04e3e7e6d')
build() {
cd "$_pkgname-$pkgver"
./configure --prefix=/usr/local/$_pkgname-$pkgver
make
}
check() {
cd "$_pkgname-$pkgver"
make -k check
}
package() {
cd "$_pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
sed -i -- 's|command="/bin/$SVCNAME"|command="/usr/bin/$SVCNAME"|g' "$_pkgname/etc/openrc/$_pkgname"
sed -i -- 's|command_args="$KEEPALIVED_OPTS"|command_args="-f /etc/keepalived/keepalived.conf"|g' "$_pkgname/etc/openrc/$_pkgname"
# remove the .service as its not needed on openrc systems
rm -rf "$pkgdir/no"
# the man pages
rm -rf "$pkgdir/usr/local/$_pkgname-$pkgver/share/man/man1/"
mkdir -p "$pkgdir/usr/share/man/"
cp -R "$pkgdir/usr/local/$_pkgname-$pkgver/share/man/" "$pkgdir/usr/share/"
# the sample config file
install -Dm644 "$_pkgname/etc/$_pkgname/keepalived.conf.sample" -t "$pkgdir/etc/$_pkgname/"
rm -rf "$pkgdir/etc/$_pkgname/samples"
# the daemon
install -Dm755 "$pkgdir/usr/local/$_pkgname-$pkgver/sbin/$_pkgname" -t "$pkgdir/usr/bin"
# the openrc script
install -Dm755 "$_pkgname/etc/openrc/$_pkgname" -t "$pkgdir/etc/init.d/"
# remove the extemporaneous stuff
rm -rf "$pkgdir/usr/local"
}
|