wok view pinentry/receipt @ rev 17670

Add missing -ltinfo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 17 09:42:47 2015 +0100 (2015-02-17)
parents da4ba6017372
children ac006a7bf27c
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 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnupg.org/"
11 WGET_URL="ftp://ftp.gnupg.org/gcrypt/pinentry/$TARBALL"
13 DEPENDS="ncursesw libcap"
14 BUILD_DEPENDS="ncursesw-dev libcap-dev"
16 # Rules to gen a SliTaz package suitable for Tazpkg.
18 compile_rules()
19 {
20 export LDFLAGS="$LDFLAGS -ltinfo"
21 ./configure --enable-pinentry-curses \
22 --disable-pinentry-gtk \
23 --disable-pinentry-gtk2 \
24 --disable-pinentry-qt \
25 --disable-pinentry-qt4 &&
26 make && make install
27 }
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/
32 cp -a $install/usr/bin $fs/usr
33 }