/** * **autoconf-archive** - pkgx package * * @domain `gnu.org/autoconf-archive` * @version `2024.10.16` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/autoconf-archive` * @buildDependencies `gnu.org/autoconf` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorgautoconfarchive * console.log(pkg.name) // "autoconf-archive" * console.log(pkg.versions[0]) // "2024.10.16" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/autoconf-archive.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorgautoconfarchivePackage: { /** * The display name of this package. */ name: 'autoconf-archive'; /** * The canonical domain name for this package. */ domain: 'gnu.org/autoconf-archive'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/autoconf-archive/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnu.org/autoconf-archive'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/autoconf-archive -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/autoconf-archive'; 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/autoconf']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2024.10.16', '2023.2.20']; aliases: readonly [] }; export type GnuorgautoconfarchivePackage = typeof gnuorgautoconfarchivePackage