wok rev 24210

properly renamed perl-file-rsync to perl-file-rsyncp
author Hans-G?nter Theisgen
date Fri Dec 31 15:55:26 2021 +0100 (2021-12-31)
parents 0e2caf86aa48
children cf792b10d9f9
files perl-file-rsyncp/description.txt perl-file-rsyncp/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/perl-file-rsyncp/description.txt	Fri Dec 31 15:55:26 2021 +0100
     1.3 @@ -0,0 +1,23 @@
     1.4 +File::RsyncP is a perl implementation of an Rsync client.
     1.5 +It is compatible with Rsync 2.5.5 - 2.6.3 (protocol versions 26-28).
     1.6 +It can send or receive files, either by running rsync on the remote
     1.7 +machine, or connecting to an rsyncd deamon on the remote machine.
     1.8 +
     1.9 +What use is File::RsyncP?
    1.10 +The main purpose is that File::RsyncP separates all file system I/O
    1.11 +into a separate module, which can be replaced by any module of your
    1.12 +own design. This allows rsync interfaces to non-filesystem data
    1.13 +types (eg: databases) to be developed with relative ease.
    1.14 +
    1.15 +File::RsyncP was initially written to provide an Rsync interface for
    1.16 +BackupPC, http://backuppc.sourceforge.net.
    1.17 +See BackupPC for programming examples.
    1.18 +
    1.19 +File::RsyncP does not yet provide a command-line interface that
    1.20 +mimics native Rsync.
    1.21 +Instead it provides an API that makes it possible to write simple
    1.22 +scripts that talk to rsync or rsyncd.
    1.23 +
    1.24 +The File::RsyncP::FileIO module contains the default file system
    1.25 +access functions. File::RsyncP::FileIO may be subclassed or replaced
    1.26 +by a custom module to provide access to non-filesystem data types.
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/perl-file-rsyncp/receipt	Fri Dec 31 15:55:26 2021 +0100
     2.3 @@ -0,0 +1,31 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="perl-file-rsyncp"
     2.7 +VERSION="0.76"
     2.8 +CATEGORY="development"
     2.9 +SHORT_DESC="Perl Rsync client"
    2.10 +MAINTAINER="slaxemulator@gmail.com"
    2.11 +LICENSE="GPL"
    2.12 +WEB_SITE="https://metacpan.org/pod/File::RsyncP"
    2.13 +REPOLOGY="perl:file-rsyncp"
    2.14 +
    2.15 +SOURCE="File-RsyncP"
    2.16 +TARBALL="$SOURCE-$VERSION.tar.gz"
    2.17 +WGET_URL="https://www.cpan.org/modules/by-module/File/$TARBALL"
    2.18 +
    2.19 +DEPENDS="perl rsync"
    2.20 +BUILD_DEPENDS="perl"
    2.21 +
    2.22 +# Rules to configure and make the package.
    2.23 +compile_rules()
    2.24 +{
    2.25 +	perl Makefile.PL &&
    2.26 +	make -j 1 &&
    2.27 +	make install DESTDIR=$DESTDIR
    2.28 +}
    2.29 +
    2.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.31 +genpkg_rules()
    2.32 +{
    2.33 +	cook_copy_folders	lib
    2.34 +}