wok rev 23361

updated perl-locale-gettext (1.05 -> 1.07)
author Hans-G?nter Theisgen
date Tue Mar 31 10:54:06 2020 +0100 (2020-03-31)
parents 8f99f0f62c8d
children d5f132bdab21
files perl-locale-gettext/receipt
line diff
     1.1 --- a/perl-locale-gettext/receipt	Tue Mar 31 10:45:01 2020 +0100
     1.2 +++ b/perl-locale-gettext/receipt	Tue Mar 31 10:54:06 2020 +0100
     1.3 @@ -1,25 +1,28 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="perl-locale-gettext"
     1.7 -VERSION="1.05"
     1.8 +VERSION="1.07"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Permits access from Perl to the gettext() family of functions."
    1.11  MAINTAINER="slaxemulator@gmail.com"
    1.12  LICENSE="GPL"
    1.13 -DEPENDS="perl gettext-base"
    1.14 -BUILD_DEPENDS="$DEPENDS"
    1.15 +WEB_SITE="https://metacpan.org/release/gettext/"
    1.16 +
    1.17  SOURCE="gettext"
    1.18  TARBALL="$SOURCE-$VERSION.tar.gz"
    1.19 -WEB_SITE="https://metacpan.org/release/gettext/"
    1.20 -WGET_URL="https://metacpan.org/CPAN/authors/id/P/PV/PVANDRY/$TARBALL"
    1.21 +WGET_URL="https://cpan.metacpan.org/authors/id/P/PV/PVANDRY/$TARBALL"
    1.22 +
    1.23 +DEPENDS="gettext-base perl"
    1.24 +BUILD_DEPENDS="$DEPENDS"
    1.25  
    1.26  # Rules to configure and make the package.
    1.27  compile_rules()
    1.28  {
    1.29 -	cd $src
    1.30 -	patch -Np1 -i $stuff/compatibility-with-POSIX-module.patch 
    1.31 -	perl Makefile.PL 
    1.32 -	make 
    1.33 +	# included in 1.07
    1.34 +	# patch -Np1 -i $stuff/compatibility-with-POSIX-module.patch 
    1.35 +
    1.36 +	perl Makefile.PL &&
    1.37 +	make &&
    1.38  	make DESTDIR="$DESTDIR" install
    1.39  }
    1.40  
    1.41 @@ -27,8 +30,8 @@
    1.42  genpkg_rules()
    1.43  {
    1.44  	mkdir -p $fs/usr
    1.45 -	cp -a $install/usr/lib $fs/usr
    1.46 +	cp -a $install/usr/lib	$fs/usr
    1.47 +
    1.48  	find "$fs" -name perllocal.pod -delete
    1.49  	find "$fs" -name .packlist -delete
    1.50  }
    1.51 -