wok annotate dirmngr/receipt @ rev 22679

updated elilo (3.10 -> 3.16)
author Hans-G?nter Theisgen
date Sat Jan 18 17:16:20 2020 +0100 (2020-01-18)
parents
children bfabe25c21ff
rev   line source
al@19226 1 # SliTaz package receipt.
al@19226 2
al@19226 3 PACKAGE="dirmngr"
al@19226 4 VERSION="1.1.1"
al@19226 5 CATEGORY="security"
al@19226 6 SHORT_DESC="DirMngr - X.509 directory manager"
al@19226 7 MAINTAINER="al.bobylev@gmail.com"
al@19226 8 LICENSE="GPL3"
al@19226 9 WEB_SITE="https://www.gnupg.org/"
al@19226 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
al@19226 11 WGET_URL="https://www.gnupg.org/ftp/gcrypt/dirmngr/$TARBALL"
al@19226 12
al@19226 13 DEPENDS="libassuan libgcrypt libksba libldap pth zlib"
al@19226 14 BUILD_DEPENDS="pth-dev libgpg-error-dev libgcrypt-dev libassuan-dev \
al@19226 15 libksba-dev openldap-dev"
al@19226 16
al@19226 17 # Rules to configure and make the package.
al@19226 18 compile_rules()
al@19226 19 {
al@19226 20 # Integrity check: https://www.gnupg.org/download/integrity_check.html
al@19226 21 echo "e708d4aa5ce852f4de3f4b58f4e4f221f5e5c690 $SRC/$TARBALL" | sha1sum -c || exit 1
al@19226 22
al@19226 23 ./configure $CONFIGURE_ARGS && make && make install
al@19226 24
al@19226 25 find $install/usr/share/man -type f -exec gzip -9 \{\} \;
al@19226 26 }
al@19226 27
al@19226 28 # Rules to gen a SliTaz package suitable for Tazpkg.
al@19226 29 genpkg_rules()
al@19226 30 {
al@19226 31 cp -a $install/* $fs
al@19226 32 rm -r $fs/usr/share/doc $fs/usr/share/info $fs/usr/share/locale
al@19226 33 }