wok annotate fribidi/receipt @ rev 22487

updated apcupsd (3.14.9 -> 3.14.14)
author Hans-G?nter Theisgen
date Tue Dec 31 13:16:39 2019 +0100 (2019-12-31)
parents e3f377fbc5f0
children ab6e8f63bcc1
rev   line source
pankso@31 1 # SliTaz package receipt.
pankso@31 2
pankso@31 3 PACKAGE="fribidi"
Hans-G?nter@20943 4 VERSION="1.0.5"
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@20943 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
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@20943 15 HOST_ARCH="i486 arm"
pascal@14996 16
pankso@31 17 # Rules to configure and make the package.
pankso@31 18 compile_rules()
pankso@31 19 {
pankso@16131 20 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@20943 21 make -j 1 &&
Hans-G?nter@20943 22 make install
pankso@31 23 }
pankso@31 24
pankso@31 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@31 26 genpkg_rules()
pankso@31 27 {
pankso@31 28 mkdir -p $fs/usr/bin $fs/usr/lib
pascal@14996 29 cp -a $install/usr/bin/fribidi $fs/usr/bin
pascal@14996 30 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@31 31 }