wok-6.x diff pinentry-gtk/receipt @ rev 11564
Add ranger form wok-undigest
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Dec 25 15:19:22 2011 +0100 (2011-12-25) |
parents | |
children | b7319995b37e |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/pinentry-gtk/receipt Sun Dec 25 15:19:22 2011 +0100 1.3 @@ -0,0 +1,33 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="pinentry-gtk" 1.7 +VERSION="0.8.1" 1.8 +CATEGORY="security" 1.9 +SHORT_DESC="Allow GnuPG to read passphrases and PIN numbers in a secure manner (GTK+ GUI)." 1.10 +# Bring the curses version as fallback if there's no X display. 1.11 +DEPENDS="gtk+ libcap pinentry" 1.12 +SOURCE="pinentry" 1.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 1.14 +WEB_SITE="http://www.gnupg.org/" 1.15 +WGET_URL="ftp://ftp.gnupg.org/gcrypt/pinentry/$TARBALL" 1.16 + 1.17 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.18 + 1.19 +compile_rules() 1.20 +{ 1.21 + cd $src 1.22 + ./configure --enable-pinentry-gtk2 \ 1.23 + --enable-fallback-curses \ 1.24 + --disable-pinentry-curses \ 1.25 + --disable-pinentry-gtk \ 1.26 + --disable-pinentry-qt \ 1.27 + --disable-pinentry-qt4 && 1.28 + make && 1.29 + make install 1.30 +} 1.31 + 1.32 +genpkg_rules() 1.33 +{ 1.34 + mkdir -p $fs/usr/ 1.35 + cp -a $_pkg/usr/bin $fs/usr 1.36 +}