wok rev 22874

updated gpgme and gpgme-dev (1.11.1 -> 1.13.1)
author Hans-G?nter Theisgen
date Fri Feb 21 17:41:08 2020 +0100 (2020-02-21)
parents 9720efce20e7
children c5db347bc553
files gpgme-dev/receipt gpgme/receipt
line diff
     1.1 --- a/gpgme-dev/receipt	Fri Feb 21 17:22:56 2020 +0100
     1.2 +++ b/gpgme-dev/receipt	Fri Feb 21 17:41:08 2020 +0100
     1.3 @@ -1,19 +1,20 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="gpgme-dev"
     1.7 -VERSION="1.11.1"
     1.8 +VERSION="1.13.1"
     1.9  CATEGORY="security"
    1.10 -SHORT_DESC="C language library that allows to add support for cryptography to a program."
    1.11 +SHORT_DESC="C language library that allows to add support for cryptography to a program - development files."
    1.12  MAINTAINER="erjo@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14  WEB_SITE="https://www.gnupg.org/related_software/gpgme/"
    1.15  
    1.16 +DEPENDS="gpgme libassuan-dev libgpg-error-dev"
    1.17  WANTED="gpgme"
    1.18 -DEPENDS="gpgme libassuan-dev libgpg-error-dev"
    1.19  
    1.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.21  genpkg_rules()
    1.22  {
    1.23 -	cp -a $install/* $fs
    1.24 -	rm -r $fs/usr/bin/gpgme-tool $fs/usr/lib/*.so*
    1.25 +	cp -a $install/*	$fs
    1.26 +	rm -r			$fs/usr/bin/gpgme-tool \
    1.27 +				$fs/usr/lib/*.so*
    1.28  }
     2.1 --- a/gpgme/receipt	Fri Feb 21 17:22:56 2020 +0100
     2.2 +++ b/gpgme/receipt	Fri Feb 21 17:41:08 2020 +0100
     2.3 @@ -1,32 +1,39 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="gpgme"
     2.7 -VERSION="1.11.1"
     2.8 +VERSION="1.13.1"
     2.9  CATEGORY="security"
    2.10  SHORT_DESC="C language library that allows to add support for cryptography to a program."
    2.11  MAINTAINER="erjo@slitaz.org"
    2.12  LICENSE="GPL2 LGPL2.1"
    2.13  WEB_SITE="https://www.gnupg.org/related_software/gpgme/"
    2.14 +
    2.15  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.16  WGET_URL="https://www.gnupg.org/ftp/gcrypt/gpgme/$TARBALL"
    2.17  
    2.18 -DEPENDS="libassuan gnupg gcc83-lib-base"
    2.19 -BUILD_DEPENDS="libgpg-error-dev libassuan-dev gnupg gcc83 gcc83-lib-base"
    2.20 +DEPENDS="gcc83-lib-base gnupg libassuan"
    2.21 +BUILD_DEPENDS="gcc83 gnupg libassuan-dev libgpg-error-dev"
    2.22  
    2.23  # Rules to configure and make the package.
    2.24  compile_rules()
    2.25  {
    2.26  	# Integrity check: https://www.gnupg.org/download/integrity_check.html
    2.27 -	echo "95b1fc427871ca8d30d6d3b1985c816fe0b5077b  $SRC/$TARBALL" | sha1sum -c || exit 1
    2.28 +	echo "f87f34e695e8d74ccc7c8f42864d50630afebb0e  $SRC/$TARBALL" | sha1sum -c || exit 1
    2.29  
    2.30 -	export CC=gcc-83 CXX=g++-83
    2.31 -	./configure $CONFIGURE_ARGS && make && make install
    2.32 +	./configure		\
    2.33 +		CC=gcc-83	\
    2.34 +		CXX=g++-83	\
    2.35 +		$CONFIGURE_ARGS &&
    2.36 +	make &&
    2.37 +	make install
    2.38  }
    2.39  
    2.40  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.41  genpkg_rules()
    2.42  {
    2.43 -	mkdir -p $fs/usr/bin $fs/usr/lib
    2.44 -	cp -a $install/usr/bin/gpgme-tool $fs/usr/bin
    2.45 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.46 +	mkdir -p $fs/usr/bin
    2.47 +	mkdir -p $fs/usr/lib
    2.48 +
    2.49 +	cp -a $install/usr/bin/gpgme-tool	$fs/usr/bin
    2.50 +	cp -a $install/usr/lib/*.so*		$fs/usr/lib
    2.51  }