wok view drbd-utils/receipt @ rev 22658

updated drbd-utils (8.9.1 -> 9.11.0)
author Hans-G?nter Theisgen
date Fri Jan 17 07:50:39 2020 +0100 (2020-01-17)
parents f0a5d5f9a02a
children 670a58377b9d
line source
1 # SliTaz package receipt.
3 PACKAGE="drbd-utils"
4 VERSION="9.11.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="DRBD is a block device to build high availability clusters."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.linbit.com/en/drbd-community/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://www.linbit.com/downloads/drbd/utils/$TARBALL"
14 DEPENDS="gcc83-lib-base"
15 BUILD_DEPENDS="flex gcc83 libxslt udev-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 CC=gcc-83 \
22 CXX=g++-83 \
23 --prefix=/usr \
24 --sysconfdir=/etc \
25 --localstatedir=/var \
26 --with-systemdunitdir=none \
27 --with-prebuiltman \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/* $fs/
37 }