wok diff libgpg-error/receipt @ rev 21920

Add pcem
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 05 16:15:48 2019 +0200 (2019-10-05)
parents b9470f5e6cae
children ef282a5e0203
line diff
     1.1 --- a/libgpg-error/receipt	Sat Jun 09 10:19:35 2018 +0000
     1.2 +++ b/libgpg-error/receipt	Sat Oct 05 16:15:48 2019 +0200
     1.3 @@ -1,27 +1,28 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libgpg-error"
     1.7 -VERSION="1.31"
     1.8 +VERSION="1.36"
     1.9  CATEGORY="security"
    1.10 -SHORT_DESC="Commons error messages for GnuPG."
    1.11 +SHORT_DESC="Common error messages for GnuPG."
    1.12  MAINTAINER="erjo@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 -WEB_SITE="https://www.gnupg.org/related_software/libgpg-error/"
    1.15 +WEB_SITE="https://www.gnupg.org/software/libgpg-error/"
    1.16 +
    1.17  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.18 -WGET_URL="https://www.gnupg.org/ftp/gcrypt/libgpg-error/$TARBALL"
    1.19 -HOST_ARCH="i486 arm"
    1.20 +WGET_URL="https://www.gnupg.org/ftp/gcrypt/$PACKAGE/$TARBALL"
    1.21  
    1.22  DEPENDS=""
    1.23 +HOST_ARCH="i486 arm"
    1.24  
    1.25  # Rules to configure and make the package.
    1.26  compile_rules()
    1.27  {
    1.28  	# Integrity check: https://www.gnupg.org/download/integrity_check.html
    1.29 -	echo "2bafad316d4e3e12bae4822b14ed9020090e6acf  $SRC/$TARBALL" | sha1sum -c || exit 1
    1.30 +	echo "5245ce38b198cecd57775fb3c7b7328ec1a2a615  $SRC/$TARBALL" | sha1sum -c || exit 1
    1.31  
    1.32 -#	touch src/extra-h.in
    1.33  	./configure $CONFIGURE_ARGS &&
    1.34 -	make && make DESTDIR=$DESTDIR install
    1.35 +	make -j 1 &&
    1.36 +	make DESTDIR=$DESTDIR install
    1.37  
    1.38  	find $install/usr/share/man -type f -exec gzip -9 \{\} \;
    1.39  }
    1.40 @@ -29,9 +30,10 @@
    1.41  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.42  genpkg_rules()
    1.43  {
    1.44 -	mkdir -p $fs/usr/bin $fs/usr/lib $fs/usr/share
    1.45 +	mkdir -p $fs/usr/bin $fs/usr/lib
    1.46 +	mkdir -p $fs/usr/share
    1.47  
    1.48 -	cp -a $install/usr/bin/gpg-error $fs/usr/bin
    1.49 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.50 -	#cp -a $install/usr/share/man $fs/usr/share
    1.51 +	cp -a $install/usr/bin/gpg-error	$fs/usr/bin
    1.52 +	cp -a $install/usr/lib/*.so*		$fs/usr/lib
    1.53 +	#cp -a $install/usr/share/man		$fs/usr/share
    1.54  }