wok-6.x rev 24574
updated fribidi and fribidi-dev (1.0.8 -> 1.0.11)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Feb 27 07:58:48 2022 +0100 (2022-02-27) |
parents | c803f42edca1 |
children | 4dc049247076 |
files | fribidi-dev/receipt fribidi/description.txt fribidi/receipt |
line diff
1.1 --- a/fribidi-dev/receipt Sun Feb 27 07:45:56 2022 +0100 1.2 +++ b/fribidi-dev/receipt Sun Feb 27 07:58:48 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="fribidi-dev" 1.7 -VERSION="1.0.8" 1.8 +VERSION="1.0.11" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Development files for Unicode Bidirectional Algorithm." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 @@ -16,9 +16,7 @@ 1.13 # Rules to gen a SliTaz package suitable for Tazpkg. 1.14 genpkg_rules() 1.15 { 1.16 - mkdir -p $fs/usr/lib 1.17 - 1.18 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.19 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.20 - cp -a $install/usr/include $fs/usr 1.21 + cook_copy_folders include 1.22 + cook_copy_folders pkgconfig 1.23 + cook_copy_files *.*a 1.24 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/fribidi/description.txt Sun Feb 27 07:58:48 2022 +0100 2.3 @@ -0,0 +1,6 @@ 2.4 +GNU FriBidi is an implementation of the Unicode Bidirectional Algorithm (bidi). 2.5 + 2.6 +GNU FriBidi has no required dependencies. 2.7 +The list of projects using GNU FriBidi is growing and they provide a wealth 2.8 +of examples of everything from blog creation to social networks using the 2.9 +various APIs to learn from.
3.1 --- a/fribidi/receipt Sun Feb 27 07:45:56 2022 +0100 3.2 +++ b/fribidi/receipt Sun Feb 27 07:58:48 2022 +0100 3.3 @@ -1,14 +1,14 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="fribidi" 3.7 -VERSION="1.0.8" 3.8 +VERSION="1.0.11" 3.9 CATEGORY="x-window" 3.10 SHORT_DESC="Free implementation of the Unicode Bidirectional Algorithm." 3.11 MAINTAINER="pankso@slitaz.org" 3.12 LICENSE="LGPL2.1" 3.13 WEB_SITE="http://fribidi.org/" 3.14 3.15 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 3.16 +TARBALL="$PACKAGE-$VERSION.tar.xz" 3.17 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL" 3.18 3.19 DEPENDS="glibc-base" 3.20 @@ -25,16 +25,13 @@ 3.21 compile_rules() 3.22 { 3.23 ./configure $CONFIGURE_ARGS && 3.24 - make -j 1 && 3.25 + make && 3.26 make install 3.27 } 3.28 3.29 # Rules to gen a SliTaz package suitable for Tazpkg. 3.30 genpkg_rules() 3.31 { 3.32 - mkdir -p $fs/usr/bin 3.33 - mkdir -p $fs/usr/lib 3.34 - 3.35 - cp -a $install/usr/bin/fribidi $fs/usr/bin 3.36 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.37 + cook_copy_folders bin 3.38 + cook_copy_files *.so* 3.39 }