wok diff p11-kit/receipt @ rev 22348
xarchiver: removed modification of desktop file
author | Hans-G?nter Theisgen |
---|---|
date | Mon Nov 18 10:22:34 2019 +0100 (2019-11-18) |
parents | 0946c634e902 |
children | 5b8b2ad6bf5e |
line diff
1.1 --- a/p11-kit/receipt Wed Jun 20 09:49:15 2018 +0000 1.2 +++ b/p11-kit/receipt Mon Nov 18 10:22:34 2019 +0100 1.3 @@ -1,34 +1,37 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="p11-kit" 1.7 -VERSION="0.23.12" 1.8 +VERSION="0.23.16" 1.9 CATEGORY="security" 1.10 +SHORT_DESC="Library to work with PKCS#11 modules." 1.11 +MAINTAINER="slaxemulator@gmail.com" 1.12 LICENSE="BSD" 1.13 -SHORT_DESC="Library to work with PKCS#11 modules" 1.14 -MAINTAINER="slaxemulator@gmail.com" 1.15 WEB_SITE="https://p11-glue.freedesktop.org/" 1.16 LFS="http://www.linuxfromscratch.org/blfs/view/stable/postlfs/p11-kit.html" 1.17 + 1.18 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.19 WGET_URL="https://github.com/p11-glue/p11-kit/releases/download/$VERSION/$TARBALL" 1.20 1.21 -BUILD_DEPENDS="gettext libtasn1-dev gtk-doc libxslt cacerts libffi-dev libffi glib glib-dev" 1.22 +BUILD_DEPENDS="cacerts gettext glib glib-dev gtk-doc libffi libffi-dev \ 1.23 + libtasn1-dev libxslt" 1.24 1.25 # Rules to configure and make the package. 1.26 compile_rules() 1.27 { 1.28 - cd $src 1.29 - ./configure \ 1.30 - --sysconfdir=/etc \ 1.31 - --with-module-path=/usr/lib/pkcs11 \ 1.32 + ./configure \ 1.33 + --sysconfdir=/etc \ 1.34 + --with-module-path=/usr/lib/pkcs11 \ 1.35 $CONFIGURE_ARGS && 1.36 - make && make install 1.37 + make && 1.38 + make install 1.39 } 1.40 1.41 # Rules to gen a SliTaz package suitable for Tazpkg. 1.42 genpkg_rules() 1.43 { 1.44 mkdir -p $fs/usr/lib 1.45 - cp -a $install/etc $fs 1.46 - cp -a $install/usr/bin $fs/usr 1.47 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.48 + 1.49 + cp -a $install/etc $fs 1.50 + cp -a $install/usr/bin $fs/usr 1.51 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.52 }