wok annotate fribidi/receipt @ rev 22783

updated fribidi and fribidi-dev (1.0.5 -> 1.0.8)
author Hans-G?nter Theisgen
date Sun Jan 26 10:41:25 2020 +0100 (2020-01-26)
parents d880f6703401
children 5ea0ce1cecc0
rev   line source
pankso@31 1 # SliTaz package receipt.
pankso@31 2
pankso@31 3 PACKAGE="fribidi"
Hans-G?nter@22783 4 VERSION="1.0.8"
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@22783 15
Hans-G?nter@20943 16 HOST_ARCH="i486 arm"
pascal@14996 17
pankso@31 18 # Rules to configure and make the package.
pankso@31 19 compile_rules()
pankso@31 20 {
pankso@16131 21 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@20943 22 make -j 1 &&
Hans-G?nter@20943 23 make install
pankso@31 24 }
pankso@31 25
pankso@31 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@31 27 genpkg_rules()
pankso@31 28 {
Hans-G?nter@22783 29 mkdir -p $fs/usr/bin
Hans-G?nter@22783 30 mkdir -p $fs/usr/lib
Hans-G?nter@22783 31
Hans-G?nter@22783 32 cp -a $install/usr/bin/fribidi $fs/usr/bin
Hans-G?nter@22783 33 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@31 34 }