UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

62 lines 2.24 kB
/** * **gnu.org/binutils** - GNU binary tools for native development * * @domain `gnu.org/binutils` * @programs `addr2line`, `ar`, `c++filt`, `elfedit`, `nm`, ... (+7 more) * @version `2.45.0` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/binutils` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorgbinutils * console.log(pkg.name) // "gnu.org/binutils" * console.log(pkg.description) // "GNU binary tools for native development" * console.log(pkg.programs) // ["addr2line", "ar", ...] * console.log(pkg.versions[0]) // "2.45.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/binutils.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorgbinutilsPackage: { /** * The display name of this package. */ name: 'gnu.org/binutils'; /** * The canonical domain name for this package. */ domain: 'gnu.org/binutils'; /** * Brief description of what this package does. */ description: 'GNU binary tools for native development'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/binutils/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/binutils'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['addr2line', 'ar', 'c++filt', 'elfedit', 'nm', 'objcopy', 'objdump', 'ranlib', 'readelf', 'size', 'strings', 'strip']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.45.0', '2.44.0', '2.43.1', '2.43.0', '2.42.0', '2.41.0', '2.40.0', '2.39.0']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/binutils -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/binutils' }; export type GnuorgbinutilsPackage = typeof gnuorgbinutilsPackage