wok annotate expat/receipt @ rev 25463

Up expat (2.4.9) fixes CVE-2022-40674
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 29 20:05:23 2022 +0000 (19 months ago)
parents 4b9f7978be6f
children f234d4e2fdbd
rev   line source
pankso@34 1 # SliTaz package receipt.
pankso@34 2
pankso@34 3 PACKAGE="expat"
pascal@25463 4 VERSION="2.4.9"
pankso@34 5 CATEGORY="x-window"
Hans-G?nter@24532 6 SHORT_DESC="XML parsing C library."
pankso@34 7 MAINTAINER="pankso@slitaz.org"
pascal@15588 8 LICENSE="MIT"
erkan@22400 9 WEB_SITE="https://libexpat.github.io/"
Hans-G?nter@20900 10
Hans-G?nter@24532 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@24532 12 WGET_URL="https://github.com/libexpat/libexpat/releases/download/R_${VERSION//./_}/$TARBALL"
Hans-G?nter@20900 13
pankso@12822 14 HOST_ARCH="i486 arm"
pankso@34 15
pascal@24069 16 current_version()
pascal@24069 17 {
pascal@24069 18 wget -O - $WEB_SITE 2>/dev/null | \
pascal@24069 19 sed '/Changes">/!d;s|.*Expat ||;s|</a.*||;s|</*strong>||g;q'
pascal@24069 20 }
pascal@24069 21
pankso@34 22 # Rules to configure and make the package.
pankso@34 23 compile_rules()
pankso@34 24 {
pankso@12822 25 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@24532 26 make &&
Hans-G?nter@24532 27 make install DESTDIR=$DESTDIR
pankso@34 28 }
pankso@34 29
pankso@34 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@34 31 genpkg_rules()
pankso@34 32 {
Hans-G?nter@24532 33 cook_copy_folders bin
Hans-G?nter@24532 34 cook_copy_files *.so*
Hans-G?nter@24532 35
al@17992 36 # expat so.0 symbolic link.
al@17992 37 cd $fs/usr/lib
al@17992 38 ln -s libexpat.so.1.*.* libexpat.so.0
pankso@34 39 }