wok-6.x rev 24211
created recipe for perl-file-rsync
author | Hans-G?nter Theisgen |
---|---|
date | Fri Dec 31 16:00:22 2021 +0100 (2021-12-31) |
parents | 76730de9420b |
children | c0318ab3558b |
files | perl-file-rsync/description.txt perl-file-rsync/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/perl-file-rsync/description.txt Fri Dec 31 16:00:22 2021 +0100 1.3 @@ -0,0 +1,3 @@ 1.4 +Perl Convenience wrapper for the rsync(1) program. 1.5 +Written for rsync-2.3.2 and updated for rsync-3.1.1 but 1.6 +should perform properly with most recent versions.
2.1 --- a/perl-file-rsync/receipt Fri Dec 31 15:55:26 2021 +0100 2.2 +++ b/perl-file-rsync/receipt Fri Dec 31 16:00:22 2021 +0100 2.3 @@ -1,15 +1,16 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="perl-file-rsync" 2.7 -VERSION="0.74" 2.8 +VERSION="0.49" 2.9 CATEGORY="development" 2.10 -SHORT_DESC="Perl Rsync client" 2.11 -MAINTAINER="slaxemulator@gmail.com" 2.12 +SHORT_DESC="Perl module interface to rsync." 2.13 +MAINTAINER="maintainer@slitaz.org" 2.14 LICENSE="GPL" 2.15 -SOURCE="File-RsyncP" 2.16 +WEB_SITE="https://metacpan.org/pod/File::Rsync" 2.17 +REPOLOGY="perl:file-rsync" 2.18 +SOURCE="File-Rsync" 2.19 TARBALL="$SOURCE-$VERSION.tar.gz" 2.20 -WEB_SITE="https://metacpan.org/release/File-RsyncP" 2.21 -WGET_URL="https://metacpan.org/CPAN/authors/id/C/CB/CBARRATT/$TARBALL" 2.22 +WGET_URL="https://www.cpan.org/modules/by-module/File/$TARBALL" 2.23 2.24 DEPENDS="perl rsync" 2.25 BUILD_DEPENDS="perl" 2.26 @@ -24,13 +25,12 @@ 2.27 compile_rules() 2.28 { 2.29 perl Makefile.PL && 2.30 - make -j1 && 2.31 - make -j1 DESTDIR=$DESTDIR install 2.32 + make && 2.33 + make install DESTDIR=$DESTDIR 2.34 } 2.35 2.36 # Rules to gen a SliTaz package suitable for Tazpkg. 2.37 genpkg_rules() 2.38 { 2.39 - mkdir -p $fs/usr 2.40 - cp -a $install/usr/lib $fs/usr 2.41 + cook_copy_folders lib 2.42 }