# HG changeset patch # User Hans-G?nter Theisgen # Date 1640962822 -3600 # Node ID cf792b10d9f9f0254a996ee9c2176850ded6ba0a # Parent 76730de9420b678bedeb16f0a13cd07e4737b8f8 created recipe for perl-file-rsync diff -r 76730de9420b -r cf792b10d9f9 perl-file-rsync/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-file-rsync/description.txt Fri Dec 31 16:00:22 2021 +0100 @@ -0,0 +1,3 @@ +Perl Convenience wrapper for the rsync(1) program. +Written for rsync-2.3.2 and updated for rsync-3.1.1 but +should perform properly with most recent versions. diff -r 76730de9420b -r cf792b10d9f9 perl-file-rsync/receipt --- a/perl-file-rsync/receipt Fri Dec 31 15:55:26 2021 +0100 +++ b/perl-file-rsync/receipt Fri Dec 31 16:00:22 2021 +0100 @@ -1,15 +1,16 @@ # SliTaz package receipt. PACKAGE="perl-file-rsync" -VERSION="0.74" +VERSION="0.49" CATEGORY="development" -SHORT_DESC="Perl Rsync client" -MAINTAINER="slaxemulator@gmail.com" +SHORT_DESC="Perl module interface to rsync." +MAINTAINER="maintainer@slitaz.org" LICENSE="GPL" -SOURCE="File-RsyncP" +WEB_SITE="https://metacpan.org/pod/File::Rsync" +REPOLOGY="perl:file-rsync" +SOURCE="File-Rsync" TARBALL="$SOURCE-$VERSION.tar.gz" -WEB_SITE="https://metacpan.org/release/File-RsyncP" -WGET_URL="https://metacpan.org/CPAN/authors/id/C/CB/CBARRATT/$TARBALL" +WGET_URL="https://www.cpan.org/modules/by-module/File/$TARBALL" DEPENDS="perl rsync" BUILD_DEPENDS="perl" @@ -24,13 +25,12 @@ compile_rules() { perl Makefile.PL && - make -j1 && - make -j1 DESTDIR=$DESTDIR install + make && + 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 }