wok view gpgme/receipt @ rev 23754

directfb: added build dependency gcc83-lib-base
author Hans-G?nter Theisgen
date Sat May 02 11:27:04 2020 +0100 (2020-05-02)
parents 3fe0ed7c1aac
children af8d823a3077
line source
1 # SliTaz package receipt.
3 PACKAGE="gpgme"
4 VERSION="1.13.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/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://www.gnupg.org/ftp/gcrypt/gpgme/$TARBALL"
14 DEPENDS="gcc83-lib-base gnupg libassuan"
15 BUILD_DEPENDS="gcc83 gnupg libassuan-dev libgpg-error-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # Integrity check: https://www.gnupg.org/download/integrity_check.html
21 echo "f87f34e695e8d74ccc7c8f42864d50630afebb0e $SRC/$TARBALL" | sha1sum -c || exit 1
23 ./configure \
24 CC=gcc-83 \
25 CXX=g++-83 \
26 $CONFIGURE_ARGS &&
27 make &&
28 make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/bin
35 mkdir -p $fs/usr/lib
37 cp -a $install/usr/bin/gpgme-tool $fs/usr/bin
38 cp -a $install/usr/lib/*.so* $fs/usr/lib
39 }