/** * **binutils** - GNU binary tools for native development * * @domain `gnu.org/binutils` * @programs `addr2line`, `ar`, `c++filt`, `elfedit`, `nm`, ... (+7 more) * @version `2.45.1` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/binutils` * @homepage https://www.gnu.org/software/binutils/binutils.html * @buildDependencies `gnu.org/bison`, `gnu.org/texinfo`, `facebook.com/zstd`, ... (+2 more) (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorgbinutils * console.log(pkg.name) // "binutils" * console.log(pkg.description) // "GNU binary tools for native development" * console.log(pkg.programs) // ["addr2line", "ar", ...] * console.log(pkg.versions[0]) // "2.45.1" (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: '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: 'https://www.gnu.org/software/binutils/binutils.html'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnu.org/binutils'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/binutils -- $SHELL -i'; launchpadInstallCommand: '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 []; /** * Build dependencies for this package. * These are only required when building the package from source. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:gnu.org/gcc`). */ buildDependencies: readonly ['gnu.org/bison', 'gnu.org/texinfo', 'facebook.com/zstd', 'linux:gnu.org/gcc', 'linux:perl.org@~5.40']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.45.1', '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 [] }; export type GnuorgbinutilsPackage = typeof gnuorgbinutilsPackage