UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

65 lines 2.14 kB
/** * **automake** - Tool for generating GNU Standards-compliant Makefiles * * @domain `gnu.org/automake` * @programs `aclocal`, `automake` * @version `1.18.0` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install +gnu.org/automake -- $SHELL -i` * @dependencies `gnu.org/autoconf^2.65.0`, `perl.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorgautomake * console.log(pkg.name) // "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.0" (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: '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 -- $SHELL -i'; /** * 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.0', '1.17.0', '1.16.5']; aliases: readonly [] }; export type GnuorgautomakePackage = typeof gnuorgautomakePackage