wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="fribidi"
4 VERSION="1.0.8"
5 CATEGORY="x-window"
6 SHORT_DESC="Free implementation of the Unicode Bidirectional Algorithm."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://fribidi.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL"
14 DEPENDS="glibc-base"
16 HOST_ARCH="i486 arm"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure $CONFIGURE_ARGS &&
22 make -j 1 &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin
30 mkdir -p $fs/usr/lib
32 cp -a $install/usr/bin/fribidi $fs/usr/bin
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }