/** * **patch** - pkgx package * * @domain `gnu.org/patch` * @programs `patch` * @version `2.8.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/patch` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorgpatch * console.log(pkg.name) // "patch" * console.log(pkg.programs) // ["patch"] * console.log(pkg.versions[0]) // "2.8.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/patch.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorgpatchPackage: { /** * The display name of this package. */ name: 'patch'; /** * The canonical domain name for this package. */ domain: 'gnu.org/patch'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/patch/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnu.org/patch'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/patch -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/patch'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['patch']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.8.0', '2.7.6']; aliases: readonly [] }; export type GnuorgpatchPackage = typeof gnuorgpatchPackage