wok annotate pinentry/receipt @ rev 19307
Add Noto fonts: noto-sans, noto-serif, noto-mono
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sun Jul 10 20:46:36 2016 +0300 (2016-07-10) |
parents | ac006a7bf27c |
children | c4fe13824294 |
rev | line source |
---|---|
gokhlayeh@9190 | 1 # SliTaz package receipt. |
gokhlayeh@9190 | 2 |
gokhlayeh@9190 | 3 PACKAGE="pinentry" |
al@19226 | 4 VERSION="0.9.7" |
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 |
al@19226 | 13 DEPENDS="libassuan libcap libgio libsecret ncursesw" |
al@19226 | 14 BUILD_DEPENDS="libgpg-error-dev libassuan-dev libsecret-dev ncursesw-dev \ |
al@19227 | 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 |
al@19226 | 23 echo "9bdcf5f4096aa8b26956afb0ecdd3d7849ffa0cd $SRC/$TARBALL" | sha1sum -c || exit 1 |
al@19226 | 24 |
al@19226 | 25 ./configure --enable-pinentry-curses && |
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 } |