wok view pinentry-gtk/receipt @ rev 22023
Remove cat process
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Sun Oct 20 12:39:13 2019 +0200 (2019-10-20) | 
| parents | f91504d4e6bc | 
| children | 241fb98cab1c | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="pinentry-gtk"
     4 VERSION="1.1.0"
     5 CATEGORY="security"
     6 SHORT_DESC="Allow GnuPG to read passphrases and PIN numbers in a secure manner (GTK+ GUI)."
     7 MAINTAINER="pascal.bellard@slitaz.org"
     8 LICENSE="GPL2"
     9 WEB_SITE="https://www.gnupg.org/"
    10 TARBALL="pinentry-$VERSION.tar.bz2"
    11 WGET_URL="https://www.gnupg.org/ftp/gcrypt/pinentry/$TARBALL"
    12 HOST_ARCH="i486 arm"
    14 DEPENDS="gtk+ libassuan libcap libsecret libtinfo ncursesw"
    15 BUILD_DEPENDS="libgpg-error-dev libassuan-dev libsecret-dev ncursesw-dev \
    16 libcap-dev gtk+-dev libgcrypt-dev"
    17 SIBLINGS="pinentry"
    19 # Rules to gen a SliTaz package suitable for Tazpkg.
    21 compile_rules()
    22 {
    23 	# Integrity check: https://www.gnupg.org/download/integrity_check.html
    24 	echo "693bdf9f48dfb3e040d92f50b1bb464e268b9fb0  $SRC/$TARBALL" | sha1sum -c || exit 1
    26 	export LDFLAGS="$LDFLAGS -ltinfo"
    27 	./configure \
    28 		--enable-pinentry-gtk2 \
    29 		--enable-fallback-curses \
    30 		--disable-pinentry-curses \
    31         --build=i486-slitaz-linux-gnu \
    32 		$CONFIGURE_ARGS &&
    33 	make &&
    34 	make install
    35 }
    37 genpkg_rules()
    38 {
    39 	mkdir -p $fs/usr/
    40 	cp -a $install/usr/bin $fs/usr
    41 }