wok diff perl-crypt-cbc/receipt @ rev 25050
Up memtest-efi* (6.00b2)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Jun 04 20:41:29 2022 +0000 (2022-06-04) |
parents | ca4a422cce07 |
children | b27d8c263cba |
line diff
1.1 --- a/perl-crypt-cbc/receipt Fri Sep 17 14:12:38 2021 +0000 1.2 +++ b/perl-crypt-cbc/receipt Sat Jun 04 20:41:29 2022 +0000 1.3 @@ -1,17 +1,20 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="perl-crypt-cbc" 1.7 -VERSION="2.33" 1.8 +VERSION="3.04" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Crypt::CBC module is a Perl extension." 1.11 MAINTAINER="nneul@neulinger.org" 1.12 -LICENSE="Perl" 1.13 +LICENSE="GPL" 1.14 +WEB_SITE="https://metacpan.org/pod/Crypt::CBC" 1.15 +REPOLOGY="perl:crypt-cbc" 1.16 + 1.17 +SOURCE="Crypt-CBC" 1.18 +TARBALL="$SOURCE-$VERSION.tar.gz" 1.19 +WGET_URL="https://cpan.org/authors/id/L/LD/LDS/$TARBALL" 1.20 + 1.21 DEPENDS="perl" 1.22 BUILD_DEPENDS="perl" 1.23 -SOURCE="Crypt-CBC" 1.24 -TARBALL="$SOURCE-$VERSION.tar.gz" 1.25 -WEB_SITE="https://metacpan.org/dist/Crypt-CBC" 1.26 -WGET_URL="http://cpan.org/authors/id/L/LD/LDS/$TARBALL" 1.27 1.28 current_version() 1.29 { 1.30 @@ -22,16 +25,13 @@ 1.31 # Rules to configure and make the package. 1.32 compile_rules() 1.33 { 1.34 - cd $src 1.35 - perl Makefile.PL 1.36 - make 1.37 - make DESTDIR=$DESTDIR install 1.38 + perl Makefile.PL && 1.39 + make && 1.40 + make install DESTDIR=$DESTDIR 1.41 } 1.42 1.43 # Rules to gen a SliTaz package suitable for Tazpkg. 1.44 genpkg_rules() 1.45 { 1.46 - mkdir -p $fs/usr 1.47 - cp -a $install/usr/lib $fs/usr 1.48 + cook_copy_folders lib 1.49 } 1.50 -