wok view gpa/receipt @ rev 20820

Add bacon & qb2c
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 19 10:10:09 2019 +0100 (2019-02-19)
parents ac006a7bf27c
children 9720efce20e7
line source
1 # SliTaz package receipt.
3 PACKAGE="gpa"
4 VERSION="0.9.10"
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/"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="https://www.gnupg.org/ftp/gcrypt/gpa/$TARBALL"
13 DEPENDS="gpgme gtk+ pinentry-gtk"
14 BUILD_DEPENDS="gtk+-dev libgpg-error-dev libassuan-dev gpgme-dev"
15 SPLIT="gpa-langpack"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # Integrity check: https://www.gnupg.org/download/integrity_check.html
21 echo "c629348725c1bf5dafd57f8a70187dc89815ce60 $SRC/$TARBALL" | sha1sum -c || exit 1
23 ./configure $CONFIGURE_ARGS && make && make install
25 find $install/usr/share/man -type f -exec gzip -9 \{\} \;
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 cp -a $install/* $fs
32 rm -r $fs/usr/share/locale
33 }