wok rev 22984
updated keyutils and keyutils-dev (1.6 -> 1.6.1)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Mar 01 07:46:00 2020 +0100 (2020-03-01) |
parents | 036ee9f91c9e |
children | bdf17c87ad31 |
files | keyutils-dev/receipt keyutils/receipt |
line diff
1.1 --- a/keyutils-dev/receipt Sun Mar 01 06:54:28 2020 +0100 1.2 +++ b/keyutils-dev/receipt Sun Mar 01 07:46:00 2020 +0100 1.3 @@ -1,21 +1,23 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="keyutils-dev" 1.7 -VERSION="1.6" 1.8 +VERSION="1.6.1" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Control the key management system built into the Linux kernel, development files" 1.11 +SHORT_DESC="Control the key management system built into the Linux kernel, development files." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="GPL2 LGPL2.1" 1.14 -WEB_SITE="http://people.redhat.com/~dhowells/keyutils/" 1.15 -WANTED="keyutils" 1.16 +WEB_SITE="https://people.redhat.com/~dhowells/keyutils/" 1.17 1.18 BUILD_DEPENDS="keyutils pkg-config" 1.19 +WANTED="keyutils" 1.20 1.21 # Rules to gen a SliTaz package suitable for Tazpkg. 1.22 genpkg_rules() 1.23 { 1.24 - mkdir -p $fs/usr $fs/lib 1.25 - cp -a $install/usr/include $fs/usr 1.26 - cp -a $install/lib/*.a $fs/lib 1.27 - cp -a $install/lib/pkgconfig $fs/lib 1.28 + mkdir -p $fs/usr 1.29 + mkdir -p $fs/lib 1.30 + 1.31 + cp -a $install/usr/include $fs/usr 1.32 + cp -a $install/lib/*.a $fs/lib 1.33 + cp -a $install/lib/pkgconfig $fs/lib 1.34 }
2.1 --- a/keyutils/receipt Sun Mar 01 06:54:28 2020 +0100 2.2 +++ b/keyutils/receipt Sun Mar 01 07:46:00 2020 +0100 2.3 @@ -1,23 +1,27 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="keyutils" 2.7 -VERSION="1.6" 2.8 +VERSION="1.6.1" 2.9 CATEGORY="security" 2.10 -SHORT_DESC="Control the key management system built into the Linux kernel" 2.11 +TAGS="cryptography" 2.12 +SHORT_DESC="Control the key management system built into the Linux kernel." 2.13 MAINTAINER="pascal.bellard@slitaz.org" 2.14 LICENSE="GPL2 LGPL2.1" 2.15 +WEB_SITE="https://people.redhat.com/~dhowells/keyutils/" 2.16 + 2.17 TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.18 -WEB_SITE="http://people.redhat.com/~dhowells/keyutils/" 2.19 WGET_URL="${WEB_SITE}$TARBALL" 2.20 -CONFIG_FILES="/etc/request-key.conf /etc/request-key.d" 2.21 -TAGS="cryptography" 2.22 2.23 BUILD_DEPENDS="file" 2.24 2.25 +CONFIG_FILES="/etc/request-key.conf /etc/request-key.d" 2.26 + 2.27 # Rules to configure and make the package. 2.28 compile_rules() 2.29 { 2.30 - sed -i 's|/etc/rpm /usr/lib/rpm|/dev/null|' Makefile 2.31 + sed -i 's|/etc/rpm /usr/lib/rpm|/dev/null|' \ 2.32 + Makefile 2.33 + 2.34 make && 2.35 make DESTDIR=$DESTDIR install 2.36 } 2.37 @@ -25,10 +29,12 @@ 2.38 # Rules to gen a SliTaz package suitable for Tazpkg. 2.39 genpkg_rules() 2.40 { 2.41 - mkdir -p $fs/usr/share $fs/lib 2.42 - cp -a $install/usr/share/keyutils $fs/usr/share 2.43 - cp -a $install/etc $fs 2.44 - cp -a $install/bin $fs 2.45 - cp -a $install/sbin $fs 2.46 - cp -a $install/lib/*.so* $fs/lib 2.47 + mkdir -p $fs/usr/share 2.48 + mkdir -p $fs/lib 2.49 + 2.50 + cp -a $install/usr/share/keyutils $fs/usr/share 2.51 + cp -a $install/etc $fs 2.52 + cp -a $install/bin $fs 2.53 + cp -a $install/sbin $fs 2.54 + cp -a $install/lib/*.so* $fs/lib 2.55 }