UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

81 lines 2.73 kB
/** * **help2man** - Automatically generate simple man pages * * @domain `gnu.org/help2man` * @programs `help2man` * @version `1.49.3` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install help2man` * @name `help2man` * @dependencies `gnu.org/gettext`, `perl.org^5.38 # perl modules require matching minors` * @companions `PERL5LIB^{{prefix}}/lib/perl5:{{prefix}}/libexec/lib/perl5:$PERL5LIB` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.help2man * // Or access via domain * const samePkg = pantry.gnuorghelp2man * console.log(pkg === samePkg) // true * console.log(pkg.name) // "help2man" * console.log(pkg.description) // "Automatically generate simple man pages" * console.log(pkg.programs) // ["help2man"] * console.log(pkg.versions[0]) // "1.49.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/help2man.md * @see https://ts-pkgx.netlify.app/usage */ export declare const help2manPackage: { /** * The display name of this package. */ name: 'help2man'; /** * The canonical domain name for this package. */ domain: 'gnu.org/help2man'; /** * Brief description of what this package does. */ description: 'Automatically generate simple man pages'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/help2man/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install help2man'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['help2man']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['PERL5LIB^{{prefix}}/lib/perl5:{{prefix}}/libexec/lib/perl5:$PERL5LIB']; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gnu.org/gettext', 'perl.org^5.38 # perl modules require matching minors']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.49.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) help2man -- $SHELL -i'; launchpadInstallCommand: 'launchpad install help2man' }; export type Help2manPackage = typeof help2manPackage