/** * **mscp** - mscp: transfer files over multiple SSH (SFTP) connections * * @domain `github.com/upa/mscp` * @programs `mscp` * @version `0.2.4` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/upa/mscp` * @dependencies `zlib.net^1.2.11`, `openssl.org^1.1.1` * @buildDependencies `gnu.org/bash`, `llvm.org`, `cmake.org` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomupamscp * console.log(pkg.name) // "mscp" * console.log(pkg.description) // "mscp: transfer files over multiple SSH (SFTP) c..." * console.log(pkg.programs) // ["mscp"] * console.log(pkg.versions[0]) // "0.2.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/upa/mscp.md * @see https://ts-pkgx.netlify.app/usage */ export declare const mscpPackage: { /** * The display name of this package. */ name: 'mscp'; /** * The canonical domain name for this package. */ domain: 'github.com/upa/mscp'; /** * Brief description of what this package does. */ description: 'mscp: transfer files over multiple SSH (SFTP) connections'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/upa/mscp/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/upa/mscp'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/upa/mscp'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/upa/mscp -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/upa/mscp'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mscp']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['zlib.net^1.2.11', 'openssl.org^1.1.1']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/bash', 'llvm.org', 'cmake.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.2.4', '0.2.3', '0.2.2', '0.2.1']; aliases: readonly [] }; export type MscpPackage = typeof mscpPackage