/** * **popt** - C library for parsing command line parameters * * @domain `rpm.org/popt` * @version `1.19.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install rpm.org/popt` * @homepage http://ftp.rpm.org/popt/ * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.rpmorgpopt * console.log(pkg.name) // "popt" * console.log(pkg.description) // "C library for parsing command line parameters" * console.log(pkg.versions[0]) // "1.19.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/rpm-org/popt.md * @see https://ts-pkgx.netlify.app/usage */ export declare const rpmorgpoptPackage: { /** * The display name of this package. */ name: 'popt'; /** * The canonical domain name for this package. */ domain: 'rpm.org/popt'; /** * Brief description of what this package does. */ description: 'C library for parsing command line parameters'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/rpm.org/popt/package.yml'; homepageUrl: 'http://ftp.rpm.org/popt/'; githubUrl: 'https://github.com/rpm-software-management/popt'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install rpm.org/popt'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +rpm.org/popt -- $SHELL -i'; launchpadInstallCommand: 'launchpad install rpm.org/popt'; programs: readonly []; 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.19.0']; aliases: readonly [] }; export type RpmorgpoptPackage = typeof rpmorgpoptPackage