/** * **lzip** - LZMA-based compression program similar to gzip or bzip2 * * @domain `nongnu.org/lzip` * @programs `lzip` * @version `1.23.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install nongnu.org/lzip` * @homepage https://www.nongnu.org/lzip/ * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.nongnuorglzip * console.log(pkg.name) // "lzip" * console.log(pkg.description) // "LZMA-based compression program similar to gzip ..." * console.log(pkg.programs) // ["lzip"] * console.log(pkg.versions[0]) // "1.23.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/nongnu-org/lzip.md * @see https://ts-pkgx.netlify.app/usage */ export declare const nongnuorglzipPackage: { /** * The display name of this package. */ name: 'lzip'; /** * The canonical domain name for this package. */ domain: 'nongnu.org/lzip'; /** * Brief description of what this package does. */ description: 'LZMA-based compression program similar to gzip or bzip2'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/nongnu.org/lzip/package.yml'; homepageUrl: 'https://www.nongnu.org/lzip/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install nongnu.org/lzip'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +nongnu.org/lzip -- $SHELL -i'; launchpadInstallCommand: 'launchpad install nongnu.org/lzip'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['lzip']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.23.0']; aliases: readonly [] }; export type NongnuorglzipPackage = typeof nongnuorglzipPackage