wok diff keyutils/receipt @ rev 23907

Up btrfs-progs (5.7)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 03 16:02:48 2020 +0000 (2020-08-03)
parents e05759d971f8
children 3e9a9990c985
line diff
     1.1 --- a/keyutils/receipt	Thu Jan 10 22:30:58 2019 +0100
     1.2 +++ b/keyutils/receipt	Mon Aug 03 16:02:48 2020 +0000
     1.3 @@ -1,23 +1,27 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="keyutils"
     1.7 -VERSION="1.6"
     1.8 +VERSION="1.6.1"
     1.9  CATEGORY="security"
    1.10 -SHORT_DESC="Control the key management system built into the Linux kernel"
    1.11 +TAGS="cryptography"
    1.12 +SHORT_DESC="Control the key management system built into the Linux kernel."
    1.13  MAINTAINER="pascal.bellard@slitaz.org"
    1.14  LICENSE="GPL2 LGPL2.1"
    1.15 +WEB_SITE="https://people.redhat.com/~dhowells/keyutils/"
    1.16 +
    1.17  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.18 -WEB_SITE="http://people.redhat.com/~dhowells/keyutils/"
    1.19  WGET_URL="${WEB_SITE}$TARBALL"
    1.20 -CONFIG_FILES="/etc/request-key.conf /etc/request-key.d"
    1.21 -TAGS="cryptography"
    1.22  
    1.23  BUILD_DEPENDS="file"
    1.24  
    1.25 +CONFIG_FILES="/etc/request-key.conf /etc/request-key.d"
    1.26 +
    1.27  # Rules to configure and make the package.
    1.28  compile_rules()
    1.29  {
    1.30 -	sed -i 's|/etc/rpm /usr/lib/rpm|/dev/null|' Makefile
    1.31 +	sed -i 's|/etc/rpm /usr/lib/rpm|/dev/null|' \
    1.32 +		Makefile
    1.33 +
    1.34  	make &&
    1.35  	make DESTDIR=$DESTDIR install
    1.36  }
    1.37 @@ -25,10 +29,12 @@
    1.38  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.39  genpkg_rules()
    1.40  {
    1.41 -	mkdir -p $fs/usr/share $fs/lib
    1.42 -	cp -a $install/usr/share/keyutils $fs/usr/share
    1.43 -	cp -a $install/etc $fs
    1.44 -	cp -a $install/bin $fs
    1.45 -	cp -a $install/sbin $fs
    1.46 -	cp -a $install/lib/*.so* $fs/lib
    1.47 +	mkdir -p $fs/usr/share
    1.48 +	mkdir -p $fs/lib
    1.49 +
    1.50 +	cp -a $install/usr/share/keyutils	$fs/usr/share
    1.51 +	cp -a $install/etc			$fs
    1.52 +	cp -a $install/bin			$fs
    1.53 +	cp -a $install/sbin			$fs
    1.54 +	cp -a $install/lib/*.so*		$fs/lib
    1.55  }