wok-6.x view pinentry-gtk/receipt @ rev 20351

pinentry: I get warning, thus use same HOST_ARCH as in libgpg-error/receipt
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 11:50:47 2018 +0000 (2018-06-09)
parents 239e2b4f2039
children f91504d4e6bc
line source
1 # SliTaz package receipt.
3 PACKAGE="pinentry-gtk"
4 VERSION="1.1.0"
5 CATEGORY="security"
6 SHORT_DESC="Allow GnuPG to read passphrases and PIN numbers in a secure manner (GTK+ GUI)."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.gnupg.org/"
10 TARBALL="pinentry-$VERSION.tar.bz2"
11 WGET_URL="https://www.gnupg.org/ftp/gcrypt/pinentry/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="gtk+ libassuan libcap libsecret libtinfo ncursesw"
15 BUILD_DEPENDS="libgpg-error-dev libassuan-dev libsecret-dev ncursesw-dev \
16 libcap-dev gtk+-dev libgcrypt-dev fltk-dev"
17 SIBLINGS="pinentry"
19 # Rules to gen a SliTaz package suitable for Tazpkg.
21 compile_rules()
22 {
23 # Integrity check: https://www.gnupg.org/download/integrity_check.html
24 echo "693bdf9f48dfb3e040d92f50b1bb464e268b9fb0 $SRC/$TARBALL" | sha1sum -c || exit 1
26 export LDFLAGS="$LDFLAGS -ltinfo"
27 ./configure \
28 --enable-pinentry-gtk2 \
29 --enable-fallback-curses \
30 --disable-pinentry-curses \
31 $CONFIGURE_ARGS &&
32 make &&
33 make install
34 }
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr/
39 cp -a $install/usr/bin $fs/usr
40 }