# HG changeset patch # User Hans-G?nter Theisgen # Date 1656171625 -3600 # Node ID eb6fc44c0c5f95dd1c775da351ca0e30d41e6637 # Parent 9e975300b9fa4bea0f2a4aa396f31ab924455bd4 updated pcre and pcre-dev (8.44 -> 8.45) diff -r 9e975300b9fa -r eb6fc44c0c5f pcmanfm-lang/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pcmanfm-lang/receipt Sat Jun 25 16:40:25 2022 +0100 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="pcmanfm-lang" +VERSION="1.3.2" +CATEGORY="localization" +SHORT_DESC="Light and easy to use file manager - localised messages." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL2" +WEB_SITE="https://sourceforge.net/projects/pcmanfm/" + +WANTED="pcmanfm" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cook_copy_folders locale +} diff -r 9e975300b9fa -r eb6fc44c0c5f pcre-dev/receipt --- a/pcre-dev/receipt Sat Jun 25 16:25:35 2022 +0100 +++ b/pcre-dev/receipt Sat Jun 25 16:40:25 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="pcre-dev" -VERSION="8.44" +VERSION="8.45" CATEGORY="development" SHORT_DESC="Perl Compatible Regular Expressions, development files." MAINTAINER="pankso@slitaz.org" @@ -16,8 +16,8 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/* $fs - - rm $fs/usr/lib/*.so* - rm -r $fs/usr/share + cook_copy_folders bin + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_files *.*a } diff -r 9e975300b9fa -r eb6fc44c0c5f pcre/receipt --- a/pcre/receipt Sat Jun 25 16:25:35 2022 +0100 +++ b/pcre/receipt Sat Jun 25 16:40:25 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="pcre" -VERSION="8.44" +VERSION="8.45" CATEGORY="system-tools" SHORT_DESC="Perl 5 Compatible Regular Expression, library." MAINTAINER="pankso@slitaz.org" @@ -37,13 +37,13 @@ for i in $(find $install/usr/share/man -type l) do dest=$(readlink $i) - rm $i; ln -s $dest.gz $i.gz + rm $i + ln -s $dest.gz $i.gz done } # 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* }