wok annotate expat/receipt @ rev 25464

httpfs2-fuse: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 30 09:07:42 2022 +0000 (19 months ago)
parents 81fc994927a6
children 3f7980d355a5
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@25464 16 # What is the latest version available today?
pascal@24069 17 current_version()
pascal@24069 18 {
pascal@24069 19 wget -O - $WEB_SITE 2>/dev/null | \
pascal@24069 20 sed '/Changes">/!d;s|.*Expat ||;s|</a.*||;s|</*strong>||g;q'
pascal@24069 21 }
pascal@24069 22
pankso@34 23 # Rules to configure and make the package.
pankso@34 24 compile_rules()
pankso@34 25 {
pankso@12822 26 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@24532 27 make &&
Hans-G?nter@24532 28 make install DESTDIR=$DESTDIR
pankso@34 29 }
pankso@34 30
pankso@34 31 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@34 32 genpkg_rules()
pankso@34 33 {
Hans-G?nter@24532 34 cook_copy_folders bin
Hans-G?nter@24532 35 cook_copy_files *.so*
Hans-G?nter@24532 36
al@17992 37 # expat so.0 symbolic link.
al@17992 38 cd $fs/usr/lib
al@17992 39 ln -s libexpat.so.1.*.* libexpat.so.0
pankso@34 40 }