wok-6.x diff gpgme/receipt @ rev 24366
created recipe for geany-lang-1.23.1
author | Hans-G?nter Theisgen |
---|---|
date | Sat Feb 05 07:22:28 2022 +0100 (2022-02-05) |
parents | 3fe0ed7c1aac |
children | af8d823a3077 |
line diff
1.1 --- a/gpgme/receipt Fri Dec 06 20:56:15 2019 +0100 1.2 +++ b/gpgme/receipt Sat Feb 05 07:22:28 2022 +0100 1.3 @@ -1,32 +1,39 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="gpgme" 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 MAINTAINER="erjo@slitaz.org" 1.12 LICENSE="GPL2 LGPL2.1" 1.13 WEB_SITE="https://www.gnupg.org/related_software/gpgme/" 1.14 + 1.15 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.16 WGET_URL="https://www.gnupg.org/ftp/gcrypt/gpgme/$TARBALL" 1.17 1.18 -DEPENDS="libassuan gnupg gcc83-lib-base" 1.19 -BUILD_DEPENDS="libgpg-error-dev libassuan-dev gnupg gcc83 gcc83-lib-base" 1.20 +DEPENDS="gcc83-lib-base gnupg libassuan" 1.21 +BUILD_DEPENDS="gcc83 gnupg libassuan-dev libgpg-error-dev" 1.22 1.23 # Rules to configure and make the package. 1.24 compile_rules() 1.25 { 1.26 # Integrity check: https://www.gnupg.org/download/integrity_check.html 1.27 - echo "95b1fc427871ca8d30d6d3b1985c816fe0b5077b $SRC/$TARBALL" | sha1sum -c || exit 1 1.28 + echo "f87f34e695e8d74ccc7c8f42864d50630afebb0e $SRC/$TARBALL" | sha1sum -c || exit 1 1.29 1.30 - export CC=gcc-83 CXX=g++-83 1.31 - ./configure $CONFIGURE_ARGS && make && make install 1.32 + ./configure \ 1.33 + CC=gcc-83 \ 1.34 + CXX=g++-83 \ 1.35 + $CONFIGURE_ARGS && 1.36 + make && 1.37 + make install 1.38 } 1.39 1.40 # Rules to gen a SliTaz package suitable for Tazpkg. 1.41 genpkg_rules() 1.42 { 1.43 - mkdir -p $fs/usr/bin $fs/usr/lib 1.44 - cp -a $install/usr/bin/gpgme-tool $fs/usr/bin 1.45 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.46 + mkdir -p $fs/usr/bin 1.47 + mkdir -p $fs/usr/lib 1.48 + 1.49 + cp -a $install/usr/bin/gpgme-tool $fs/usr/bin 1.50 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.51 }