wok-6.x diff gnupg/receipt @ rev 23066
remove nagvis-flex
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Mar 09 18:55:03 2020 +0100 (2020-03-09) |
parents | e54f35249a89 |
children | 83b97236db32 |
line diff
1.1 --- a/gnupg/receipt Sun Jun 10 13:24:20 2018 +0200 1.2 +++ b/gnupg/receipt Mon Mar 09 18:55:03 2020 +0100 1.3 @@ -1,36 +1,43 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="gnupg" 1.7 -VERSION="2.2.8" 1.8 +VERSION="2.2.19" 1.9 CATEGORY="security" 1.10 SHORT_DESC="Free implementation of the OpenPGP." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 LICENSE="GPL3" 1.13 WEB_SITE="https://www.gnupg.org/" 1.14 + 1.15 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.16 -WGET_URL="https://www.gnupg.org/ftp/gcrypt/gnupg/$TARBALL" 1.17 +WGET_URL="${WEB_SITE}ftp/gcrypt/gnupg/$TARBALL" 1.18 1.19 -DEPENDS="bzlib libassuan libcurl libgcrypt libksba libusb-compat ncurses pth \ 1.20 -readline pinentry gnutls libusb sqlite openldap npth" 1.21 -BUILD_DEPENDS="libgpg-error-dev libassuan-dev libgcrypt-dev libksba-dev \ 1.22 -pth-dev curl-dev zlib-dev libusb-compat-dev readline-dev gnutls-dev \ 1.23 -libgnutls libusb-dev sqlite-dev openldap-dev npth-dev" 1.24 +DEPENDS="bzlib gnutls libassuan libcurl libgcrypt libksba libusb 1.25 + libusb-compat ncurses npth openldap pinentry pth readline sqlite" 1.26 +BUILD_DEPENDS="curl-dev gnutls-dev libassuan-dev libgcrypt-dev libgnutls 1.27 + libgpg-error-dev libksba-dev libusb-compat-dev libusb-dev 1.28 + npth-dev openldap-dev pth-dev readline-dev sqlite-dev zlib-dev" 1.29 1.30 # Rules to configure and make the package. 1.31 compile_rules() 1.32 { 1.33 # Integrity check: https://www.gnupg.org/download/integrity_check.html 1.34 - echo "d87553a125832ea90e8aeb3ceeecf24f88de56fb $SRC/$TARBALL" | sha1sum -c || exit 1 1.35 + echo "e24a1208ffe69d7436b2f27e99542a85f34d0ac0 $SRC/$TARBALL" | sha1sum -c || 1.36 + exit 1 1.37 1.38 - export LDFLAGS="-lrt" 1.39 - ./configure $CONFIGURE_ARGS && make && make install 1.40 + export LDFLAGS="-lrt" 1.41 1.42 - find $install/usr/share/man -type f -exec gzip -9 \{\} \; 1.43 + ./configure $CONFIGURE_ARGS && 1.44 + make && 1.45 + make install 1.46 + 1.47 + # 2.2.19 already gzipped 1.48 +# find $install/usr/share/man -type f -exec gzip -9 \{\} \; 1.49 } 1.50 1.51 # Rules to gen a SliTaz package suitable for Tazpkg. 1.52 genpkg_rules() 1.53 { 1.54 - cp -a $install/* $fs 1.55 - rm -r $fs/usr/share/doc $fs/usr/share/info $fs/usr/share/locale 1.56 + cp -a $install/* $fs 1.57 + rm -r $fs/usr/share/doc $fs/usr/share/info \ 1.58 + $fs/usr/share/locale 1.59 }