# HG changeset patch # User Hans-G?nter Theisgen # Date 1646373336 -3600 # Node ID ee0a3fa85a9a7c5f3d7226969c2ff95d447260eb # Parent dac441f6f78d62feedc294ce883ebc9fdbcfb295 updated gmime and gmime-dev (3.2.6 -> 3.2.7) diff -r dac441f6f78d -r ee0a3fa85a9a gmime-dev/receipt --- a/gmime-dev/receipt Wed Mar 02 16:31:29 2022 +0000 +++ b/gmime-dev/receipt Fri Mar 04 06:55:36 2022 +0100 @@ -1,9 +1,9 @@ # SliTaz package receipt. PACKAGE="gmime-dev" -VERSION="3.2.6" +VERSION="3.2.7" CATEGORY="development" -SHORT_DESC="Library for parsing messages using MIME." +SHORT_DESC="Library for parsing messages using MIME - development files." MAINTAINER="allan316@gmail.com" LICENSE="LGPL2.1" WEB_SITE="http://spruce.sourceforge.net/gmime" @@ -14,9 +14,7 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_files *.*a } diff -r dac441f6f78d -r ee0a3fa85a9a gmime/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gmime/description.txt Fri Mar 04 06:55:36 2022 +0100 @@ -0,0 +1,9 @@ +GMime is a C/C++ library which may be used for the creation +and parsing of messages using the Multipurpose Internet Mail +Extension (MIME) as defined by numerous IETF specifications. + +GMime features an extremely robust high-performance parser +designed to be able to preserve byte-for-byte information +allowing developers to re-seralize the parsed messages back +to a stream exactly as the parser found them. +It also features integrated GnuPG and S/MIME v3.2 support. diff -r dac441f6f78d -r ee0a3fa85a9a gmime/receipt --- a/gmime/receipt Wed Mar 02 16:31:29 2022 +0000 +++ b/gmime/receipt Fri Mar 04 06:55:36 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="gmime" -VERSION="3.2.6" +VERSION="3.2.7" CATEGORY="development" SHORT_DESC="Library for parsing messages using MIME." MAINTAINER="allan316@gmail.com" @@ -28,14 +28,13 @@ --disable-mono \ --disable-static \ --build=$HOST_SYSTEM \ - --host=$HOST_SYSTEM 2>&1 | grep -v "can't remove" && - make -j 1 && + --host=$HOST_SYSTEM && + make && make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_files *.so* }