# HG changeset patch # User Hans-G?nter Theisgen # Date 1657863529 -3600 # Node ID d9e054b0d4b3956ee4c1ddc78ff11129e7373093 # Parent 70a00c0a16d31c90f44ac9364590e26b587900e0 updated qrencode and qrencode-dev (4.0.2 -> 4.1.1) diff -r 70a00c0a16d3 -r d9e054b0d4b3 qrencode-dev/receipt --- a/qrencode-dev/receipt Fri Jul 15 06:30:28 2022 +0100 +++ b/qrencode-dev/receipt Fri Jul 15 06:38:49 2022 +0100 @@ -1,23 +1,20 @@ # SliTaz package receipt. PACKAGE="qrencode-dev" -VERSION="4.0.2" +VERSION="4.1.1" CATEGORY="development" SHORT_DESC="C library for encoding data in a QR Code symbol, development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL2.1" WEB_SITE="https://github.com/fukuchi/libqrencode" -DEPENDS="qrencode pkg-config" +DEPENDS="pkg-config qrencode" WANTED="qrencode" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/lib/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 70a00c0a16d3 -r d9e054b0d4b3 qrencode/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/qrencode/description.txt Fri Jul 15 06:38:49 2022 +0100 @@ -0,0 +1,11 @@ +Libqrencode is a fast and compact library for encoding data in a QR Code symbol, +a 2D symbology that can be scanned by handy terminals such as a mobile phone +with CCD. The capacity of QR Code is up to 7000 digits or 4000 characters and +has high robustness. + +Libqrencode accepts a string or a list of data chunks then encodes in a +QR Code symbol as a bitmap array. +While other QR Code applications generate an image file, using libqrencode +allows applications to render QR Code symbols from raw bitmap data directly. +This library also contains a command-line utility outputs QR Code images in +various formats. diff -r 70a00c0a16d3 -r d9e054b0d4b3 qrencode/receipt --- a/qrencode/receipt Fri Jul 15 06:30:28 2022 +0100 +++ b/qrencode/receipt Fri Jul 15 06:38:49 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="qrencode" -VERSION="4.0.2" +VERSION="4.1.1" CATEGORY="misc" SHORT_DESC="C library for encoding data in a QR Code symbol." MAINTAINER="pascal.bellard@slitaz.org" @@ -30,14 +30,12 @@ --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/lib*so* $fs/usr/lib + cook_copy_folders bin + cook_copy_files *.so* }