wok-current view fribidi/receipt @ rev 21902
updated shaarli again (0.10.3 -> 0.11.1)
| author | Hans-Günter Theisgen | 
|---|---|
| date | Fri Oct 04 13:14:23 2019 +0100 (2019-10-04) | 
| 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 }