wok view pinentry-gtk/receipt @ rev 13106

Up: ardour to 2.8.12.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Jun 26 18:39:56 2012 +0000 (2012-06-26)
parents 2a9e108fd848
children 8c01b80af4f4
line source
1 # SliTaz package receipt.
3 PACKAGE="pinentry-gtk"
4 VERSION="0.8.1"
5 CATEGORY="security"
6 SHORT_DESC="Allow GnuPG to read passphrases and PIN numbers in a secure manner (GTK+ GUI)."
7 # Bring the curses version as fallback if there's no X display.
8 DEPENDS="gtk+ libcap pinentry"
9 SOURCE="pinentry"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://www.gnupg.org/"
12 WGET_URL="ftp://ftp.gnupg.org/gcrypt/pinentry/$TARBALL"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
16 compile_rules()
17 {
18 cd $src
19 ./configure --enable-pinentry-gtk2 \
20 --enable-fallback-curses \
21 --disable-pinentry-curses \
22 --disable-pinentry-gtk \
23 --disable-pinentry-qt \
24 --disable-pinentry-qt4 \
25 $CONFIGURE_ARGS &&
26 make &&
27 make install
28 }
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/
33 cp -a $_pkg/usr/bin $fs/usr
34 }