blob: dbe3adc5c739acf524887ed7299730a4d6f4987f (
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
|
# This is an example APKBUILD file. Use this as a start to creating your own,
# and remove these comments.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Contributor: Pablo Castorino <pcastorino@mendoza-conicet.gob.ar>
# Maintainer: Pablo Castorino <pcastorino@mendoza-conicet.gob.ar>
pkgname=keepalived
pkgver=1.1.20
pkgrel=0
pkgdesc="Health Checking for Linux Virtual Server & High-Availability"
url="http://www.keepalived.org/"
license="GPL"
depends=
makedepends="openssl-dev popt-dev linux-headers"
install=
subpackages="$pkgname-doc"
source="http://www.keepalived.org/software/$pkgname-$pkgver.tar.gz
keepalived-1.1.20-ipvs_haeader_check.patch
$pkgname.initd
$pkgname.confd
"
# append extra dependencies to -dev subpackage
# remove if not used.
# depends_dev="somepackage-dev"
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
cd "$_builddir"
# apply patches here
for i in ../*.patch; do
msg "Applying $i"
patch -p1 -i $i || return 1
done
}
build() {
cd "$_builddir"
./configure --prefix=/usr \
--sysconfdir=/etc \
--with-kernel-dir=/usr/include/linux \
--mandir=/usr/share/man \
--infodir=/usr/share/info
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install
# remove the 2 lines below (and this) if there is no init.d script
install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname
install -m644 -D "$srcdir"/$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname
}
md5sums="6c3065c94bb9e2187c4b5a80f6d8be31 keepalived-1.1.20.tar.gz
78c19e15f649e353c2fba44e1f70b1e1 keepalived-1.1.20-ipvs_haeader_check.patch
d20faa8d55b8a41b8ddb71bb00a6bead keepalived.initd
56ff68ad19e973826c2dbc42c892939f keepalived.confd"
|