UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 2.33 kB
/** * **gnu.org/autoconf** - Automatic configure script builder * * @domain `gnu.org/autoconf` * @programs `autoconf`, `autoheader`, `autom4te`, `autoreconf`, `autoscan`, ... (+2 more) * @version `2.72.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/autoconf` * @dependencies `gnu.org/m4@1`, `perl.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorgautoconf * console.log(pkg.name) // "gnu.org/autoconf" * console.log(pkg.description) // "Automatic configure script builder" * console.log(pkg.programs) // ["autoconf", "autoheader", ...] * console.log(pkg.versions[0]) // "2.72.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/autoconf.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorgautoconfPackage: { /** * The display name of this package. */ name: 'gnu.org/autoconf'; /** * The canonical domain name for this package. */ domain: 'gnu.org/autoconf'; /** * Brief description of what this package does. */ description: 'Automatic configure script builder'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/autoconf/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnu.org/autoconf'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['autoconf', 'autoheader', 'autom4te', 'autoreconf', 'autoscan', 'autoupdate', 'ifnames']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gnu.org/m4@1', 'perl.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.72.0', '2.71.0']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/autoconf -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/autoconf' }; export type GnuorgautoconfPackage = typeof gnuorgautoconfPackage