/** * **libssh** - pkgx package * * @domain `libssh.org` * @version `0.11.3` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install libssh.org` * @dependencies `openssl.org^1.1`, `zlib.net^1` * @buildDependencies `cmake.org@^3` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.libsshorg * console.log(pkg.name) // "libssh" * console.log(pkg.versions[0]) // "0.11.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/libssh-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const libsshorgPackage: { /** * The display name of this package. */ name: 'libssh'; /** * The canonical domain name for this package. */ domain: 'libssh.org'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libssh.org/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install libssh.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +libssh.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install libssh.org'; programs: readonly []; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['openssl.org^1.1', 'zlib.net^1']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org@^3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.11.3', '0.11.2', '0.11.1', '0.11.0', '0.10.6', '0.10.5', '0.10.4', '0.9.8', '0.9.7']; aliases: readonly [] }; export type LibsshorgPackage = typeof libsshorgPackage