wok diff dirmngr/receipt @ rev 24416
thunar: typo
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Feb 10 19:39:21 2022 +0000 (2022-02-10) |
parents | |
children | bfabe25c21ff |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dirmngr/receipt Thu Feb 10 19:39:21 2022 +0000 1.3 @@ -0,0 +1,33 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="dirmngr" 1.7 +VERSION="1.1.1" 1.8 +CATEGORY="security" 1.9 +SHORT_DESC="DirMngr - X.509 directory manager" 1.10 +MAINTAINER="al.bobylev@gmail.com" 1.11 +LICENSE="GPL3" 1.12 +WEB_SITE="https://www.gnupg.org/" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.14 +WGET_URL="https://www.gnupg.org/ftp/gcrypt/dirmngr/$TARBALL" 1.15 + 1.16 +DEPENDS="libassuan libgcrypt libksba libldap pth zlib" 1.17 +BUILD_DEPENDS="pth-dev libgpg-error-dev libgcrypt-dev libassuan-dev \ 1.18 +libksba-dev openldap-dev" 1.19 + 1.20 +# Rules to configure and make the package. 1.21 +compile_rules() 1.22 +{ 1.23 + # Integrity check: https://www.gnupg.org/download/integrity_check.html 1.24 + echo "e708d4aa5ce852f4de3f4b58f4e4f221f5e5c690 $SRC/$TARBALL" | sha1sum -c || exit 1 1.25 + 1.26 + ./configure $CONFIGURE_ARGS && make && make install 1.27 + 1.28 + find $install/usr/share/man -type f -exec gzip -9 \{\} \; 1.29 +} 1.30 + 1.31 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.32 +genpkg_rules() 1.33 +{ 1.34 + cp -a $install/* $fs 1.35 + rm -r $fs/usr/share/doc $fs/usr/share/info $fs/usr/share/locale 1.36 +}