wok view gpa/receipt @ rev 19449

Up bind (9.11.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Oct 17 10:20:42 2016 +0200 (2016-10-17)
parents 2a3377f9cb0b
children 9b15fcffdf1d
line source
1 # SliTaz package receipt.
3 PACKAGE="gpa"
4 VERSION="0.9.9"
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 "1cf86c9e38aa553fdb880c55cbc6755901ad21a4 $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 }