wok-current annotate libunistring/receipt @ rev 25738

Update get-LibreOffice for current64, add libavahi for LibreOffice draw
author Stanislas Leduc <shann@slitaz.org>
date Wed Jan 29 10:54:12 2025 +0000 (2 weeks ago)
parents 72ae4dc9e539
children
rev   line source
al@19485 1 # SliTaz package receipt.
al@19485 2
al@19485 3 PACKAGE="libunistring"
Hans-G?nter@24842 4 VERSION="1.0"
al@19485 5 CATEGORY="libdevel"
Hans-G?nter@21325 6 SHORT_DESC="Unicode string library."
al@19485 7 MAINTAINER="al.bobylev@gmail.com"
al@19485 8 LICENSE="GPL3 LGPL3 FDL"
al@19485 9 WEB_SITE="https://www.gnu.org/software/libunistring/"
Hans-G?nter@21325 10
al@19485 11 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@19485 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
al@19485 13
al@19485 14 DEPENDS="glibc-base"
al@19485 15
shann@25728 16 HOST_ARCH="i486 x86_64"
shann@25728 17
pascal@24072 18 current_version()
pascal@24072 19 {
pascal@24072 20 wget -O - $(dirname $WGET_URL) 2>/dev/null | \
pascal@24072 21 sed "/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
pascal@24072 22 }
pascal@24072 23
al@19485 24 # Rules to configure and make the package.
al@19485 25 compile_rules()
al@19485 26 {
Hans-G?nter@21325 27 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@24842 28 make &&
Hans-G?nter@21325 29 make install
al@19485 30 }
al@19485 31
al@19485 32 # Rules to gen a SliTaz package suitable for Tazpkg.
al@19485 33 genpkg_rules()
al@19485 34 {
Hans-G?nter@24842 35 cook_copy_files *.so*
al@19485 36 }