/** * **rsync** - An open source utility that provides fast incremental file transfer. It also has useful features for backup and restore operations among many other use cases. * * @domain `rsync.samba.org` * @programs `rsync`, `rsync-ssl` * @version `3.4.1` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install rsync.samba.org` * @homepage https://rsync.samba.org/ * @dependencies `zlib.net^1`, `facebook.com/zstd^1`, `lz4.org^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.rsyncsambaorg * console.log(pkg.name) // "rsync" * console.log(pkg.description) // "An open source utility that provides fast incre..." * console.log(pkg.programs) // ["rsync", "rsync-ssl"] * console.log(pkg.versions[0]) // "3.4.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/rsync-samba-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const rsyncsambaorgPackage: { /** * The display name of this package. */ name: 'rsync'; /** * The canonical domain name for this package. */ domain: 'rsync.samba.org'; /** * Brief description of what this package does. */ description: 'An open source utility that provides fast incremental file transfer. It also has useful features for backup and restore operations among many other use cases.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/rsync.samba.org/package.yml'; homepageUrl: 'https://rsync.samba.org/'; githubUrl: 'https://github.com/WayneD/rsync'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install rsync.samba.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +rsync.samba.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install rsync.samba.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rsync', 'rsync-ssl']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['zlib.net^1', 'facebook.com/zstd^1', 'lz4.org^1']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.4.1', '3.4.0', '3.3.0', '3.2.7']; aliases: readonly [] }; export type RsyncsambaorgPackage = typeof rsyncsambaorgPackage