wok view keyutils/receipt @ rev 20636

Add ecryptfs-simple
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jan 09 13:01:27 2019 +0100 (2019-01-09)
parents
children e05759d971f8
line source
1 # SliTaz package receipt.
3 PACKAGE="keyutils"
4 VERSION="1.6"
5 CATEGORY="security"
6 SHORT_DESC="Control the key management system built into the Linux kernel"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2 LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://people.redhat.com/~dhowells/keyutils/"
11 WGET_URL="${WEB_SITE}$TARBALL"
12 CONFIG_FILES="/etc/request-key.conf /etc/request-key.d"
13 TAGS="cryptography"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 sed -i 's|/etc/rpm /usr/lib/rpm|/dev/null|' Makefile
19 make &&
20 make DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share $fs/lib
27 cp -a $install/usr/share/keyutils $fs/usr/share
28 cp -a $install/etc $fs
29 cp -a $install/bin $fs
30 cp -a $install/sbin $fs
31 cp -a $install/lib/*.so* $fs/lib
32 }