wok view pinentry-gtk/receipt @ rev 10010

gnustep-gui: build but need tar
author Christophe Lincoln <pankso@slitaz.org>
date Thu May 19 02:11:20 2011 +0200 (2011-05-19)
parents
children b7319995b37e
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 make &&
26 make install
27 }
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/
32 cp -a $_pkg/usr/bin $fs/usr
33 }