wok annotate pinentry/receipt @ rev 22802

freetype: add freetype-config
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 28 09:23:39 2020 +0100 (2020-01-28)
parents f91504d4e6bc
children 241fb98cab1c
rev   line source
gokhlayeh@9190 1 # SliTaz package receipt.
gokhlayeh@9190 2
gokhlayeh@9190 3 PACKAGE="pinentry"
erkan@20348 4 VERSION="1.1.0"
gokhlayeh@9190 5 CATEGORY="security"
al@19226 6 SHORT_DESC="Collection of dialog programs that allow GnuPG to read passphrases and PIN numbers in a secure manner."
pascal@15090 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15090 8 LICENSE="GPL2"
al@19226 9 WEB_SITE="https://www.gnupg.org/"
al@19226 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
al@19226 11 WGET_URL="https://www.gnupg.org/ftp/gcrypt/pinentry/$TARBALL"
gokhlayeh@9190 12
erkan@20353 13 DEPENDS="libassuan libcap libgio libsecret ncursesw"
al@19226 14 BUILD_DEPENDS="libgpg-error-dev libassuan-dev libsecret-dev ncursesw-dev \
erkan@20353 15 libcap-dev libgcrypt-dev"
al@19226 16 SIBLINGS="pinentry-gtk"
pascal@15090 17
gokhlayeh@9190 18 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@9190 19
gokhlayeh@9190 20 compile_rules()
gokhlayeh@9190 21 {
al@19226 22 # Integrity check: https://www.gnupg.org/download/integrity_check.html
erkan@20348 23 echo "693bdf9f48dfb3e040d92f50b1bb464e268b9fb0 $SRC/$TARBALL" | sha1sum -c || exit 1
al@19226 24
erkan@20352 25 ./configure --enable-pinentry-curses --build=i486-slitaz-linux-gnu &&
al@19226 26 make && make install
gokhlayeh@9190 27 }
gokhlayeh@9190 28
gokhlayeh@9190 29 genpkg_rules()
gokhlayeh@9190 30 {
al@19226 31 mkdir -p $fs/usr
pascal@15090 32 cp -a $install/usr/bin $fs/usr
gokhlayeh@9190 33 }