# HG changeset patch # User Hans-G?nter Theisgen # Date 1645945128 -3600 # Node ID 4bcc87e4326a7e15a72a3af8347b1b0480e36e34 # Parent c803f42edca158d26d57176157ea8bd01d6b503e updated fribidi and fribidi-dev (1.0.8 -> 1.0.11) diff -r c803f42edca1 -r 4bcc87e4326a fribidi-dev/receipt --- a/fribidi-dev/receipt Sun Feb 27 07:45:56 2022 +0100 +++ b/fribidi-dev/receipt Sun Feb 27 07:58:48 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="fribidi-dev" -VERSION="1.0.8" +VERSION="1.0.11" CATEGORY="development" SHORT_DESC="Development files for Unicode Bidirectional Algorithm." MAINTAINER="pankso@slitaz.org" @@ -16,9 +16,7 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_files *.*a } diff -r c803f42edca1 -r 4bcc87e4326a fribidi/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fribidi/description.txt Sun Feb 27 07:58:48 2022 +0100 @@ -0,0 +1,6 @@ +GNU FriBidi is an implementation of the Unicode Bidirectional Algorithm (bidi). + +GNU FriBidi has no required dependencies. +The list of projects using GNU FriBidi is growing and they provide a wealth +of examples of everything from blog creation to social networks using the +various APIs to learn from. diff -r c803f42edca1 -r 4bcc87e4326a fribidi/receipt --- a/fribidi/receipt Sun Feb 27 07:45:56 2022 +0100 +++ b/fribidi/receipt Sun Feb 27 07:58:48 2022 +0100 @@ -1,14 +1,14 @@ # SliTaz package receipt. PACKAGE="fribidi" -VERSION="1.0.8" +VERSION="1.0.11" CATEGORY="x-window" SHORT_DESC="Free implementation of the Unicode Bidirectional Algorithm." MAINTAINER="pankso@slitaz.org" LICENSE="LGPL2.1" WEB_SITE="http://fribidi.org/" -TARBALL="$PACKAGE-$VERSION.tar.bz2" +TARBALL="$PACKAGE-$VERSION.tar.xz" WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL" DEPENDS="glibc-base" @@ -25,16 +25,13 @@ compile_rules() { ./configure $CONFIGURE_ARGS && - make -j 1 && + make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/bin - mkdir -p $fs/usr/lib - - cp -a $install/usr/bin/fribidi $fs/usr/bin - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_folders bin + cook_copy_files *.so* }