wok-current annotate fribidi/receipt @ rev 25075
created recipe for alsa-ucm-conf
author | Hans-G?nter Theisgen |
---|---|
date | Tue Jun 14 07:07:03 2022 +0100 (2022-06-14) |
parents | 5ea0ce1cecc0 |
children |
rev | line source |
---|---|
pankso@31 | 1 # SliTaz package receipt. |
pankso@31 | 2 |
pankso@31 | 3 PACKAGE="fribidi" |
Hans-G?nter@24574 | 4 VERSION="1.0.11" |
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@24055 | 18 current_version() |
pascal@24055 | 19 { |
pascal@24055 | 20 wget -O - ${WGET_URL%/down*} 2>/dev/null | \ |
pascal@24055 | 21 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' |
pascal@24055 | 22 } |
pascal@24055 | 23 |
pankso@31 | 24 # Rules to configure and make the package. |
pankso@31 | 25 compile_rules() |
pankso@31 | 26 { |
pankso@16131 | 27 ./configure $CONFIGURE_ARGS && |
Hans-G?nter@24574 | 28 make && |
Hans-G?nter@20943 | 29 make install |
pankso@31 | 30 } |
pankso@31 | 31 |
pankso@31 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@31 | 33 genpkg_rules() |
pankso@31 | 34 { |
Hans-G?nter@24574 | 35 cook_copy_folders bin |
Hans-G?nter@24574 | 36 cook_copy_files *.so* |
pankso@31 | 37 } |