wok view gpa/receipt @ rev 23017

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