wok-current rev 24607
updated gmime and gmime-dev (3.2.6 -> 3.2.7)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Mar 04 06:55:36 2022 +0100 (2022-03-04) |
parents | dac441f6f78d |
children | 23518fd0fb42 |
files | gmime-dev/receipt gmime/description.txt gmime/receipt |
line diff
1.1 --- a/gmime-dev/receipt Wed Mar 02 16:31:29 2022 +0000 1.2 +++ b/gmime-dev/receipt Fri Mar 04 06:55:36 2022 +0100 1.3 @@ -1,9 +1,9 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="gmime-dev" 1.7 -VERSION="3.2.6" 1.8 +VERSION="3.2.7" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Library for parsing messages using MIME." 1.11 +SHORT_DESC="Library for parsing messages using MIME - development files." 1.12 MAINTAINER="allan316@gmail.com" 1.13 LICENSE="LGPL2.1" 1.14 WEB_SITE="http://spruce.sourceforge.net/gmime" 1.15 @@ -14,9 +14,7 @@ 1.16 # Rules to gen a SliTaz package suitable for Tazpkg. 1.17 genpkg_rules() 1.18 { 1.19 - mkdir -p $fs/usr/lib 1.20 - 1.21 - cp -a $install/usr/include $fs/usr 1.22 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.23 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.24 + cook_copy_folders include 1.25 + cook_copy_folders pkgconfig 1.26 + cook_copy_files *.*a 1.27 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/gmime/description.txt Fri Mar 04 06:55:36 2022 +0100 2.3 @@ -0,0 +1,9 @@ 2.4 +GMime is a C/C++ library which may be used for the creation 2.5 +and parsing of messages using the Multipurpose Internet Mail 2.6 +Extension (MIME) as defined by numerous IETF specifications. 2.7 + 2.8 +GMime features an extremely robust high-performance parser 2.9 +designed to be able to preserve byte-for-byte information 2.10 +allowing developers to re-seralize the parsed messages back 2.11 +to a stream exactly as the parser found them. 2.12 +It also features integrated GnuPG and S/MIME v3.2 support.
3.1 --- a/gmime/receipt Wed Mar 02 16:31:29 2022 +0000 3.2 +++ b/gmime/receipt Fri Mar 04 06:55:36 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="gmime" 3.7 -VERSION="3.2.6" 3.8 +VERSION="3.2.7" 3.9 CATEGORY="development" 3.10 SHORT_DESC="Library for parsing messages using MIME." 3.11 MAINTAINER="allan316@gmail.com" 3.12 @@ -28,14 +28,13 @@ 3.13 --disable-mono \ 3.14 --disable-static \ 3.15 --build=$HOST_SYSTEM \ 3.16 - --host=$HOST_SYSTEM 2>&1 | grep -v "can't remove" && 3.17 - make -j 1 && 3.18 + --host=$HOST_SYSTEM && 3.19 + make && 3.20 make DESTDIR=$DESTDIR install 3.21 } 3.22 3.23 # Rules to gen a SliTaz package suitable for Tazpkg. 3.24 genpkg_rules() 3.25 { 3.26 - mkdir -p $fs/usr/lib 3.27 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.28 + cook_copy_files *.so* 3.29 }