wok-6.x rev 25256
updated qrencode and qrencode-dev (4.0.2 -> 4.1.1)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Jul 15 06:38:49 2022 +0100 (2022-07-15) |
parents | 70a00c0a16d3 |
children | 5a3f0d26683d |
files | qrencode-dev/receipt qrencode/description.txt qrencode/receipt |
line diff
1.1 --- a/qrencode-dev/receipt Fri Jul 15 06:30:28 2022 +0100 1.2 +++ b/qrencode-dev/receipt Fri Jul 15 06:38:49 2022 +0100 1.3 @@ -1,23 +1,20 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="qrencode-dev" 1.7 -VERSION="4.0.2" 1.8 +VERSION="4.1.1" 1.9 CATEGORY="development" 1.10 SHORT_DESC="C library for encoding data in a QR Code symbol, development files." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 LICENSE="LGPL2.1" 1.13 WEB_SITE="https://github.com/fukuchi/libqrencode" 1.14 1.15 -DEPENDS="qrencode pkg-config" 1.16 +DEPENDS="pkg-config qrencode" 1.17 WANTED="qrencode" 1.18 1.19 # Rules to gen a SliTaz package suitable for Tazpkg. 1.20 genpkg_rules() 1.21 { 1.22 - mkdir -p $fs/usr/lib 1.23 - 1.24 - cp -a $install/usr/lib/lib*a $fs/usr/lib 1.25 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.26 - cp -a $install/usr/include $fs/usr 1.27 + cook_copy_folders include 1.28 + cook_copy_folders pkgconfig 1.29 + cook_copy_files *.*a 1.30 } 1.31 -
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/qrencode/description.txt Fri Jul 15 06:38:49 2022 +0100 2.3 @@ -0,0 +1,11 @@ 2.4 +Libqrencode is a fast and compact library for encoding data in a QR Code symbol, 2.5 +a 2D symbology that can be scanned by handy terminals such as a mobile phone 2.6 +with CCD. The capacity of QR Code is up to 7000 digits or 4000 characters and 2.7 +has high robustness. 2.8 + 2.9 +Libqrencode accepts a string or a list of data chunks then encodes in a 2.10 +QR Code symbol as a bitmap array. 2.11 +While other QR Code applications generate an image file, using libqrencode 2.12 +allows applications to render QR Code symbols from raw bitmap data directly. 2.13 +This library also contains a command-line utility outputs QR Code images in 2.14 +various formats.
3.1 --- a/qrencode/receipt Fri Jul 15 06:30:28 2022 +0100 3.2 +++ b/qrencode/receipt Fri Jul 15 06:38:49 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="qrencode" 3.7 -VERSION="4.0.2" 3.8 +VERSION="4.1.1" 3.9 CATEGORY="misc" 3.10 SHORT_DESC="C library for encoding data in a QR Code symbol." 3.11 MAINTAINER="pascal.bellard@slitaz.org" 3.12 @@ -30,14 +30,12 @@ 3.13 --mandir=/usr/share/man \ 3.14 $CONFIGURE_ARGS && 3.15 make && 3.16 - make DESTDIR=$DESTDIR install 3.17 + make install DESTDIR=$DESTDIR 3.18 } 3.19 3.20 # Rules to gen a SliTaz package suitable for Tazpkg. 3.21 genpkg_rules() 3.22 { 3.23 - mkdir -p $fs/usr/lib 3.24 - 3.25 - cp -a $install/usr/bin $fs/usr 3.26 - cp -a $install/usr/lib/lib*so* $fs/usr/lib 3.27 + cook_copy_folders bin 3.28 + cook_copy_files *.so* 3.29 }