wok annotate libassuan/receipt @ rev 24076
Add some current_version
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Jul 08 13:19:25 2021 +0000 (2021-07-08) |
parents | accf85e049b4 |
children | ede1d184d5c5 |
rev | line source |
---|---|
pankso@4060 | 1 # SliTaz package receipt. |
pankso@4060 | 2 |
pankso@4060 | 3 PACKAGE="libassuan" |
Hans-G?nter@23004 | 4 VERSION="2.5.3" |
pankso@4060 | 5 CATEGORY="security" |
pankso@4060 | 6 SHORT_DESC="IPC library used by some of the other GnuPG related packages." |
pankso@4060 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@14714 | 8 LICENSE="GPL3" |
al@19226 | 9 WEB_SITE="https://www.gnupg.org/related_software/libassuan/" |
Hans-G?nter@23004 | 10 |
pankso@4060 | 11 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
al@19226 | 12 WGET_URL="https://www.gnupg.org/ftp/gcrypt/libassuan/$TARBALL" |
pankso@9758 | 13 |
slaxemulator@6329 | 14 DEPENDS="libgpg-error" |
al@19226 | 15 BUILD_DEPENDS="libgpg-error-dev" |
pankso@4060 | 16 |
pankso@4060 | 17 # Rules to configure and make the package. |
pankso@4060 | 18 compile_rules() |
pankso@4060 | 19 { |
al@19226 | 20 # Integrity check: https://www.gnupg.org/download/integrity_check.html |
pascal@23005 | 21 echo "6d81bf42fa91ed2894df8b65764ce899e39776f8 $SRC/$TARBALL" | sha1sum -c || exit 1 |
al@19226 | 22 |
Hans-G?nter@23004 | 23 ./configure $CONFIGURE_ARGS && |
Hans-G?nter@23004 | 24 make && |
Hans-G?nter@23004 | 25 make install |
pankso@4060 | 26 } |
pankso@4060 | 27 |
pankso@4060 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@4060 | 29 genpkg_rules() |
pankso@4060 | 30 { |
gokhlayeh@9184 | 31 mkdir -p $fs/usr/lib |
Hans-G?nter@23004 | 32 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@4060 | 33 } |