wok annotate fribidi/receipt @ rev 25708

Add shrinkler
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jul 25 12:01:54 2024 +0000 (2 months ago)
parents 20ad21d5532c
children
rev   line source
pankso@31 1 # SliTaz package receipt.
pankso@31 2
pankso@31 3 PACKAGE="fribidi"
pascal@25666 4 VERSION="1.0.13"
pankso@211 5 CATEGORY="x-window"
Hans-G?nter@20943 6 SHORT_DESC="Free implementation of the Unicode Bidirectional Algorithm."
pankso@31 7 MAINTAINER="pankso@slitaz.org"
pascal@14996 8 LICENSE="LGPL2.1"
Hans-G?nter@20943 9 WEB_SITE="http://fribidi.org/"
Hans-G?nter@20943 10
Hans-G?nter@24574 11 TARBALL="$PACKAGE-$VERSION.tar.xz"
Hans-G?nter@20943 12 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL"
pankso@31 13
pascal@14996 14 DEPENDS="glibc-base"
Hans-G?nter@22783 15
Hans-G?nter@20943 16 HOST_ARCH="i486 arm"
pascal@14996 17
pascal@25599 18 # What is the latest version available today?
pascal@24055 19 current_version()
pascal@24055 20 {
pascal@24055 21 wget -O - ${WGET_URL%/down*} 2>/dev/null | \
pascal@25599 22 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
pascal@24055 23 }
pascal@24055 24
pankso@31 25 # Rules to configure and make the package.
pankso@31 26 compile_rules()
pankso@31 27 {
pankso@16131 28 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@24574 29 make &&
Hans-G?nter@20943 30 make install
pankso@31 31 }
pankso@31 32
pankso@31 33 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@31 34 genpkg_rules()
pankso@31 35 {
Hans-G?nter@24574 36 cook_copy_folders bin
Hans-G?nter@24574 37 cook_copy_files *.so*
pankso@31 38 }