wok view keyutils/receipt @ rev 23921

Up slitaz-tools (1036), tazinst (105), tazusb (209)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Aug 21 15:07:47 2020 +0000 (2020-08-21)
parents e05759d971f8
children 3e9a9990c985
line source
1 # SliTaz package receipt.
3 PACKAGE="keyutils"
4 VERSION="1.6.1"
5 CATEGORY="security"
6 TAGS="cryptography"
7 SHORT_DESC="Control the key management system built into the Linux kernel."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2 LGPL2.1"
10 WEB_SITE="https://people.redhat.com/~dhowells/keyutils/"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="${WEB_SITE}$TARBALL"
15 BUILD_DEPENDS="file"
17 CONFIG_FILES="/etc/request-key.conf /etc/request-key.d"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 sed -i 's|/etc/rpm /usr/lib/rpm|/dev/null|' \
23 Makefile
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share
33 mkdir -p $fs/lib
35 cp -a $install/usr/share/keyutils $fs/usr/share
36 cp -a $install/etc $fs
37 cp -a $install/bin $fs
38 cp -a $install/sbin $fs
39 cp -a $install/lib/*.so* $fs/lib
40 }