UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 2.3 kB
/** * **gnu.org/automake** - Tool for generating GNU Standards-compliant Makefiles * * @domain `gnu.org/automake` * @programs `aclocal`, `automake` * @version `1.18.1` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/automake` * @dependencies `gnu.org/autoconf^2.65.0`, `perl.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorgautomake * console.log(pkg.name) // "gnu.org/automake" * console.log(pkg.description) // "Tool for generating GNU Standards-compliant Mak..." * console.log(pkg.programs) // ["aclocal", "automake"] * console.log(pkg.versions[0]) // "1.18.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/automake.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorgautomakePackage: { /** * The display name of this package. */ name: 'gnu.org/automake'; /** * The canonical domain name for this package. */ domain: 'gnu.org/automake'; /** * Brief description of what this package does. */ description: 'Tool for generating GNU Standards-compliant Makefiles'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/automake/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/automake'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['aclocal', 'automake']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gnu.org/autoconf^2.65.0', 'perl.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.18.1', '1.18.0', '1.17.0', '1.16.5']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/automake -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/automake' }; export type GnuorgautomakePackage = typeof gnuorgautomakePackage