wok view pinentry/receipt @ rev 19683

Add: mate (a package to install all MATE desktop at once)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 12 00:43:16 2017 +0100 (2017-02-12)
parents ac006a7bf27c
children c4fe13824294
line source
1 # SliTaz package receipt.
3 PACKAGE="pinentry"
4 VERSION="0.9.7"
5 CATEGORY="security"
6 SHORT_DESC="Collection of dialog programs that allow GnuPG to read passphrases and PIN numbers in a secure manner."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.gnupg.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="https://www.gnupg.org/ftp/gcrypt/pinentry/$TARBALL"
13 DEPENDS="libassuan libcap libgio libsecret ncursesw"
14 BUILD_DEPENDS="libgpg-error-dev libassuan-dev libsecret-dev ncursesw-dev \
15 libcap-dev libgcrypt-dev"
16 SIBLINGS="pinentry-gtk"
18 # Rules to gen a SliTaz package suitable for Tazpkg.
20 compile_rules()
21 {
22 # Integrity check: https://www.gnupg.org/download/integrity_check.html
23 echo "9bdcf5f4096aa8b26956afb0ecdd3d7849ffa0cd $SRC/$TARBALL" | sha1sum -c || exit 1
25 ./configure --enable-pinentry-curses &&
26 make && make install
27 }
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }