# HG changeset patch # User Hans-G?nter Theisgen # Date 1641116002 -3600 # Node ID 00eba47b30479905e0209b3b88631509a1d4a0ec # Parent 32b8576ff8ab49fec5bff9eeb5bc6c35cbfffd0b updated perl-universal-require (0.18 -> 0.19) diff -r 32b8576ff8ab -r 00eba47b3047 perl-universal-require/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-universal-require/description.txt Sun Jan 02 10:33:22 2022 +0100 @@ -0,0 +1,4 @@ +Before using this module, you should look at the alternatives. + +This module provides a safe mechanism for loading a module at runtime, +when you have the name of the module in a variable. diff -r 32b8576ff8ab -r 00eba47b3047 perl-universal-require/receipt --- a/perl-universal-require/receipt Sun Jan 02 10:30:06 2022 +0100 +++ b/perl-universal-require/receipt Sun Jan 02 10:33:22 2022 +0100 @@ -1,17 +1,20 @@ # SliTaz package receipt. PACKAGE="perl-universal-require" -VERSION="0.18" +VERSION="0.19" CATEGORY="development" SHORT_DESC="UNIVERSAL::require module is a Perl extension" -MAINTAINER="devel@slitaz.org" +MAINTAINER="maintainer@slitaz.org" LICENSE="GPL" +WEB_SITE="https://metacpan.org/pod/UNIVERSAL::require" +REPOLOGY="perl:universal-require" + +SOURCE="UNIVERSAL-require" +TARBALL="$SOURCE-$VERSION.tar.gz" +WGET_URL="https://www.cpan.org/modules/by-module/UNIVERSAL/$TARBALL" + DEPENDS="perl" BUILD_DEPENDS="perl" -SOURCE="UNIVERSAL-require" -TARBALL="$SOURCE-$VERSION.tar.gz" -WEB_SITE="https://metacpan.org/dist/UNIVERSAL-require" -WGET_URL="https://cpan.metacpan.org/authors/id/N/NE/NEILB/$TARBALL" current_version() { @@ -24,12 +27,11 @@ { perl Makefile.PL && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/lib $fs/usr + cook_copy_folders lib }