wok view libgpg-error/receipt @ rev 21920

Add pcem
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 05 16:15:48 2019 +0200 (2019-10-05)
parents b9470f5e6cae
children ef282a5e0203
line source
1 # SliTaz package receipt.
3 PACKAGE="libgpg-error"
4 VERSION="1.36"
5 CATEGORY="security"
6 SHORT_DESC="Common error messages for GnuPG."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.gnupg.org/software/libgpg-error/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://www.gnupg.org/ftp/gcrypt/$PACKAGE/$TARBALL"
14 DEPENDS=""
15 HOST_ARCH="i486 arm"
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 "5245ce38b198cecd57775fb3c7b7328ec1a2a615 $SRC/$TARBALL" | sha1sum -c || exit 1
23 ./configure $CONFIGURE_ARGS &&
24 make -j 1 &&
25 make DESTDIR=$DESTDIR install
27 find $install/usr/share/man -type f -exec gzip -9 \{\} \;
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/bin $fs/usr/lib
34 mkdir -p $fs/usr/share
36 cp -a $install/usr/bin/gpg-error $fs/usr/bin
37 cp -a $install/usr/lib/*.so* $fs/usr/lib
38 #cp -a $install/usr/share/man $fs/usr/share
39 }