UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

61 lines 1.91 kB
/** * **gnu.org/gawk** - pkgx package * * @domain `gnu.org/gawk` * @programs `awk`, `gawk`, `gawk-{{version}}`, `gawkbug` * @version `5.3.2` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/gawk` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorggawk * console.log(pkg.name) // "gnu.org/gawk" * console.log(pkg.programs) // ["awk", "gawk", ...] * console.log(pkg.versions[0]) // "5.3.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/gawk.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorggawkPackage: { /** * The display name of this package. */ name: 'gnu.org/gawk'; /** * The canonical domain name for this package. */ domain: 'gnu.org/gawk'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/gawk/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/gawk'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['awk', 'gawk', 'gawk-{{version}}', 'gawkbug']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.3.2', '5.3.1', '5.3.0', '5.2.2', '5.2.1']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/gawk -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/gawk' }; export type GnuorggawkPackage = typeof gnuorggawkPackage