wok annotate gpa/receipt @ rev 24321

updated aqualung (1.0 -> 1.1)
author Hans-G?nter Theisgen
date Wed Jan 26 10:22:26 2022 +0100 (2022-01-26)
parents 9b15fcffdf1d
children af8d823a3077
rev   line source
erjo@1345 1 # SliTaz package receipt.
erjo@1345 2
erjo@1345 3 PACKAGE="gpa"
Hans-G?nter@22873 4 VERSION="0.10.0"
erjo@1345 5 CATEGORY="security"
Hans-G?nter@22873 6 SHORT_DESC="Gnu Privacy Assistant."
erjo@1345 7 MAINTAINER="erjo@slitaz.org"
pascal@15331 8 LICENSE="GPL3"
al@19226 9 WEB_SITE="https://www.gnupg.org/related_software/gpa/"
Hans-G?nter@22873 10
erjo@1345 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
al@19226 12 WGET_URL="https://www.gnupg.org/ftp/gcrypt/gpa/$TARBALL"
erjo@1345 13
al@19226 14 DEPENDS="gpgme gtk+ pinentry-gtk"
Hans-G?nter@22873 15 BUILD_DEPENDS="gpgme-dev gtk+-dev libassuan-dev libgpg-error-dev"
al@19226 16 SPLIT="gpa-langpack"
erjo@9932 17
erjo@1345 18 # Rules to configure and make the package.
erjo@1345 19 compile_rules()
erjo@1345 20 {
al@19226 21 # Integrity check: https://www.gnupg.org/download/integrity_check.html
Hans-G?nter@22873 22 echo "61475989acd12de8b7daacd906200e8b4f519c5a $SRC/$TARBALL" | sha1sum -c || exit 1
al@19226 23
Hans-G?nter@22873 24 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@22873 25 make &&
Hans-G?nter@22873 26 make install
al@19226 27
al@19226 28 find $install/usr/share/man -type f -exec gzip -9 \{\} \;
erjo@1345 29 }
erjo@1345 30
erjo@1345 31 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1345 32 genpkg_rules()
erjo@1345 33 {
Hans-G?nter@22873 34 cp -a $install/* $fs
Hans-G?nter@22873 35 rm -r $fs/usr/share/locale
erjo@1345 36 }