wok view libassuan/receipt @ rev 23909

Up tazinst (1021)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 08 17:52:43 2020 +0000 (2020-08-08)
parents accf85e049b4
children ede1d184d5c5
line source
1 # SliTaz package receipt.
3 PACKAGE="libassuan"
4 VERSION="2.5.3"
5 CATEGORY="security"
6 SHORT_DESC="IPC library used by some of the other GnuPG related packages."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnupg.org/related_software/libassuan/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://www.gnupg.org/ftp/gcrypt/libassuan/$TARBALL"
14 DEPENDS="libgpg-error"
15 BUILD_DEPENDS="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 "6d81bf42fa91ed2894df8b65764ce899e39776f8 $SRC/$TARBALL" | sha1sum -c || exit 1
23 ./configure $CONFIGURE_ARGS &&
24 make &&
25 make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }