# HG changeset patch # User Hans-G?nter Theisgen # Date 1643875759 -3600 # Node ID f73dc49d0a427f6375025ac75752f3342992d787 # Parent e919c5a2742d1e5d081d48258b866bab642f2a94 updated babl and babl-dev (0.1.72 -> 0.1.88) diff -r e919c5a2742d -r f73dc49d0a42 babl-dev/receipt --- a/babl-dev/receipt Wed Feb 02 18:01:43 2022 +0000 +++ b/babl-dev/receipt Thu Feb 03 09:09:19 2022 +0100 @@ -1,14 +1,14 @@ # SliTaz package receipt. PACKAGE="babl-dev" -VERSION="0.1.72" +VERSION="0.1.88" CATEGORY="development" SHORT_DESC="Pixel format translation library - development files." MAINTAINER="erjo@slitaz.org" LICENSE="LGPL3" WEB_SITE="https://gegl.org/babl/" -DEPENDS="babl pkg-config lcms2-dev" +DEPENDS="babl pkg-config" WANTED="babl" HOST_ARCH="i486 arm" @@ -16,11 +16,11 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib -# cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/babl-* $fs/usr/lib - rm $fs/usr/lib/babl-*/*.so + cook_copy_folders include + cook_copy_folders pkgconfig + + # 0.1.88: there are not other files than *.so +# cp -a $install/usr/lib/babl-* $fs/usr/lib +# rm $fs/usr/lib/babl-*/*.so } diff -r e919c5a2742d -r f73dc49d0a42 babl/description.txt --- a/babl/description.txt Wed Feb 02 18:01:43 2022 +0000 +++ b/babl/description.txt Thu Feb 03 09:09:19 2022 +0100 @@ -1,5 +1,5 @@ -babl is a dynamic, any to any, pixel format translation library. +Babl is a dynamic, any to any, pixel format translation library. -It allows converting between different methods of storing pixels known as pixel -formats that have different bitdepths and other data representations, color -models and component permutations. +It allows converting between different methods of storing pixels +known as pixel formats that have different bitdepths and other +data representations, color models and component permutations. diff -r e919c5a2742d -r f73dc49d0a42 babl/receipt --- a/babl/receipt Wed Feb 02 18:01:43 2022 +0000 +++ b/babl/receipt Thu Feb 03 09:09:19 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="babl" -VERSION="0.1.72" +VERSION="0.1.88" CATEGORY="system-tools" SHORT_DESC="Pixel format translation library." MAINTAINER="erjo@slitaz.org" @@ -9,7 +9,7 @@ WEB_SITE="https://gegl.org/babl/" TARBALL="$PACKAGE-$VERSION.tar.xz" -WGET_URL="http://download.gimp.org/pub/$PACKAGE/${VERSION%.*}/$TARBALL" +WGET_URL="https://download.gimp.org/pub/$PACKAGE/${VERSION%.*}/$TARBALL" DEPENDS="gcc83-lib-base gobject-introspection lcms2" BUILD_DEPENDS="gcc83 gobject-introspection-dev lcms2-dev meson ninja" @@ -22,10 +22,10 @@ export CC=gcc-83 export CXX=g++-83 - meson build --prefix=/usr - cd build - ninja && - ninja install + meson _build \ + --prefix=/usr + ninja -C _build && + ninja -C _build install } # Rules to gen a SliTaz package suitable for Tazpkg. @@ -37,4 +37,3 @@ cp -a $install/usr/lib/babl-* $fs/usr/lib # rm $fs/usr/lib/babl-*/*.*a } -