# HG changeset patch # User Hans-G?nter Theisgen # Date 1585648446 -3600 # Node ID aad106864a1c1f67397bfa35f4d20b61a9a756e4 # Parent 8f99f0f62c8d3ba0d95bd7f97a5553ee1ac27399 updated perl-locale-gettext (1.05 -> 1.07) diff -r 8f99f0f62c8d -r aad106864a1c perl-locale-gettext/receipt --- a/perl-locale-gettext/receipt Tue Mar 31 10:45:01 2020 +0100 +++ b/perl-locale-gettext/receipt Tue Mar 31 10:54:06 2020 +0100 @@ -1,25 +1,28 @@ # SliTaz package receipt. PACKAGE="perl-locale-gettext" -VERSION="1.05" +VERSION="1.07" CATEGORY="development" SHORT_DESC="Permits access from Perl to the gettext() family of functions." MAINTAINER="slaxemulator@gmail.com" LICENSE="GPL" -DEPENDS="perl gettext-base" -BUILD_DEPENDS="$DEPENDS" +WEB_SITE="https://metacpan.org/release/gettext/" + SOURCE="gettext" TARBALL="$SOURCE-$VERSION.tar.gz" -WEB_SITE="https://metacpan.org/release/gettext/" -WGET_URL="https://metacpan.org/CPAN/authors/id/P/PV/PVANDRY/$TARBALL" +WGET_URL="https://cpan.metacpan.org/authors/id/P/PV/PVANDRY/$TARBALL" + +DEPENDS="gettext-base perl" +BUILD_DEPENDS="$DEPENDS" # Rules to configure and make the package. compile_rules() { - cd $src - patch -Np1 -i $stuff/compatibility-with-POSIX-module.patch - perl Makefile.PL - make + # included in 1.07 + # patch -Np1 -i $stuff/compatibility-with-POSIX-module.patch + + perl Makefile.PL && + make && make DESTDIR="$DESTDIR" install } @@ -27,8 +30,8 @@ genpkg_rules() { mkdir -p $fs/usr - cp -a $install/usr/lib $fs/usr + cp -a $install/usr/lib $fs/usr + find "$fs" -name perllocal.pod -delete find "$fs" -name .packlist -delete } -