/** * **gmp** - pkgx package * * @domain `gnu.org/gmp` * @version `6.3.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/gmp` * @buildDependencies `gnu.org/m4@1` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorggmp * console.log(pkg.name) // "gmp" * console.log(pkg.versions[0]) // "6.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/gmp.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorggmpPackage: { /** * The display name of this package. */ name: 'gmp'; /** * The canonical domain name for this package. */ domain: 'gnu.org/gmp'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/gmp/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnu.org/gmp'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/gmp -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/gmp'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/m4@1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['6.3.0', '6.2.1']; aliases: readonly [] }; export type GnuorggmpPackage = typeof gnuorggmpPackage