wok view gpgme/receipt @ rev 20359

gpgme update: 1.6.0 -> 1.11.1
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 17:29:10 2018 +0000 (2018-06-09)
parents ac006a7bf27c
children 987d51d5279b
line source
1 # SliTaz package receipt.
3 PACKAGE="gpgme"
4 VERSION="1.11.1"
5 CATEGORY="security"
6 SHORT_DESC="C language library that allows to add support for cryptography to a program."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2 LGPL2.1"
9 WEB_SITE="https://www.gnupg.org/related_software/gpgme/"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="https://www.gnupg.org/ftp/gcrypt/gpgme/$TARBALL"
13 DEPENDS="libassuan"
14 BUILD_DEPENDS="libgpg-error-dev libassuan-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 # Integrity check: https://www.gnupg.org/download/integrity_check.html
20 echo "95b1fc427871ca8d30d6d3b1985c816fe0b5077b $SRC/$TARBALL" | sha1sum -c || exit 1
22 ./configure $CONFIGURE_ARGS && make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin $fs/usr/lib
29 cp -a $install/usr/bin/gpgme-tool $fs/usr/bin
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }