wok view fribidi/receipt @ rev 22521

updated autofs (5.1.4 -> 5.1.6)
author Hans-G?nter Theisgen
date Thu Jan 02 10:33:19 2020 +0100 (2020-01-02)
parents e3f377fbc5f0
children ab6e8f63bcc1
line source
1 # SliTaz package receipt.
3 PACKAGE="fribidi"
4 VERSION="1.0.5"
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"
15 HOST_ARCH="i486 arm"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS &&
21 make -j 1 &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin $fs/usr/lib
29 cp -a $install/usr/bin/fribidi $fs/usr/bin
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }