wok view keepalived/receipt @ rev 22659

updated drbd-utils again (8.9.1 -> 9.11.0)
author Hans-G?nter Theisgen
date Fri Jan 17 08:04:22 2020 +0100 (2020-01-17)
parents 3c95fb36898f
children 036ee9f91c9e
line source
1 # SliTaz package receipt.
3 PACKAGE="keepalived"
4 VERSION="2.0.13"
5 CATEGORY="system-tools"
6 SHORT_DESC="Routing software for loadbalancing and high-availability."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.keepalived.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}software/$TARBALL"
14 DEPENDS="libnl libssl"
15 BUILD_DEPENDS="glib libnl-dev openssl-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --sysconfdir=/etc \
23 $CONFIGURE_ARGS &&
24 make -j 1 &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
33 cp -a $install/etc $fs/
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/sbin $fs/usr
36 }