wok diff libgpg-error/receipt @ rev 19226

Update GnuPG stuff and libsecret.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jun 23 01:40:19 2016 +0300 (2016-06-23)
parents ab5bde7ad5e1
children 13806712bef0
line diff
     1.1 --- a/libgpg-error/receipt	Fri Feb 28 18:49:26 2014 +0100
     1.2 +++ b/libgpg-error/receipt	Thu Jun 23 01:40:19 2016 +0300
     1.3 @@ -1,14 +1,14 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libgpg-error"
     1.7 -VERSION="1.10"
     1.8 +VERSION="1.23"
     1.9  CATEGORY="security"
    1.10  SHORT_DESC="Commons error messages for GnuPG."
    1.11  MAINTAINER="erjo@slitaz.org"
    1.12  LICENSE="GPL2"
    1.13 +WEB_SITE="https://www.gnupg.org/related_software/libgpg-error/"
    1.14  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.15 -WEB_SITE="http://www.gnupg.org/related_software/libgpg-error/"
    1.16 -WGET_URL="ftp://ftp.gnupg.org/gcrypt/libgpg-error/$TARBALL"
    1.17 +WGET_URL="https://www.gnupg.org/ftp/gcrypt/libgpg-error/$TARBALL"
    1.18  HOST_ARCH="i486 arm"
    1.19  
    1.20  DEPENDS=""
    1.21 @@ -16,18 +16,22 @@
    1.22  # Rules to configure and make the package.
    1.23  compile_rules()
    1.24  {
    1.25 -	touch src/extra-h.in
    1.26 +	# Integrity check: https://www.gnupg.org/download/integrity_check.html
    1.27 +	echo "c6a0c49211955e924593527b32e4b2736cafcda5  $SRC/$TARBALL" | sha1sum -c || exit 1
    1.28 +
    1.29 +#	touch src/extra-h.in
    1.30  	./configure $CONFIGURE_ARGS &&
    1.31  	make && make DESTDIR=$DESTDIR install
    1.32 +
    1.33 +	find $install/usr/share/man -type f -exec gzip -9 \{\} \;
    1.34  }
    1.35  
    1.36  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.37  genpkg_rules()
    1.38  {
    1.39  	mkdir -p $fs/usr/bin $fs/usr/lib $fs/usr/share
    1.40 -	
    1.41 +
    1.42  	cp -a $install/usr/bin/gpg-error $fs/usr/bin
    1.43  	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.44 -	cp -a $install/usr/share/common-lisp $fs/usr/share
    1.45 +	cp -a $install/usr/share/man $fs/usr/share
    1.46  }
    1.47 -