wok annotate libassuan/receipt @ rev 25626
opendkim: add opendkim.conf
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Nov 09 09:26:20 2023 +0000 (12 months ago) |
parents | ede1d184d5c5 |
children |
rev | line source |
---|---|
pankso@4060 | 1 # SliTaz package receipt. |
pankso@4060 | 2 |
pankso@4060 | 3 PACKAGE="libassuan" |
Hans-G?nter@24720 | 4 VERSION="2.5.5" |
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 |
pascal@24447 | 17 # What is the latest version available today? |
pascal@24447 | 18 current_version() |
pascal@24447 | 19 { |
pascal@24447 | 20 wget -O - ${WGET_URL%/*} 2>/dev/null | \ |
pascal@24447 | 21 sed "/latest/d;/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*|\\1|" | sort -Vr | sed q |
pascal@24447 | 22 } |
pascal@24447 | 23 |
pankso@4060 | 24 # Rules to configure and make the package. |
pankso@4060 | 25 compile_rules() |
pankso@4060 | 26 { |
al@19226 | 27 # Integrity check: https://www.gnupg.org/download/integrity_check.html |
Hans-G?nter@24720 | 28 echo "ec4f67c0117ccd17007c748a392ded96dc1b1ae9 $SRC/$TARBALL" | sha1sum -c || exit 1 |
al@19226 | 29 |
Hans-G?nter@23004 | 30 ./configure $CONFIGURE_ARGS && |
Hans-G?nter@23004 | 31 make && |
Hans-G?nter@23004 | 32 make install |
pankso@4060 | 33 } |
pankso@4060 | 34 |
pankso@4060 | 35 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@4060 | 36 genpkg_rules() |
pankso@4060 | 37 { |
Hans-G?nter@24720 | 38 cook_copy_files *.so* |
pankso@4060 | 39 } |