wok view pinentry/receipt @ rev 10581

openvas-scanner: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 26 09:09:01 2011 +0200 (2011-05-26)
parents
children da4ba6017372
line source
1 # SliTaz package receipt.
3 PACKAGE="pinentry"
4 VERSION="0.8.1"
5 CATEGORY="security"
6 SHORT_DESC="pinentry is a small collection of dialog programs that allow GnuPG to read passphrases and PIN numbers in a secure manner."
7 DEPENDS="ncursesw libcap"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.gnupg.org/"
10 WGET_URL="ftp://ftp.gnupg.org/gcrypt/pinentry/$TARBALL"
12 # Rules to gen a SliTaz package suitable for Tazpkg.
14 compile_rules()
15 {
16 cd $src
17 ./configure --enable-pinentry-curses \
18 --disable-pinentry-gtk \
19 --disable-pinentry-gtk2 \
20 --disable-pinentry-qt \
21 --disable-pinentry-qt4 &&
22 make && make install
23 }
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/
28 cp -a $_pkg/usr/bin $fs/usr
29 }