UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 2.59 kB
/** * **elfutils.org** - pkgx package * * @domain `elfutils.org` * @programs `eu-addr2line`, `eu-ar`, `eu-elfclassify`, `eu-elfcmp`, `eu-elfcompress`, ... (+11 more) * @version `0.193.0` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install elfutils.org` * @dependencies `sourceware.org/bzip2`, `tukaani.org/xz`, `zlib.net`, ... (+2 more) (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.elfutilsorg * console.log(pkg.name) // "elfutils.org" * console.log(pkg.programs) // ["eu-addr2line", "eu-ar", ...] * console.log(pkg.versions[0]) // "0.193.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/elfutils-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const elfutilsorgPackage: { /** * The display name of this package. */ name: 'elfutils.org'; /** * The canonical domain name for this package. */ domain: 'elfutils.org'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/elfutils.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install elfutils.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['eu-addr2line', 'eu-ar', 'eu-elfclassify', 'eu-elfcmp', 'eu-elfcompress', 'eu-elflint', 'eu-findtextrel', 'eu-nm', 'eu-objdump', 'eu-ranlib', 'eu-readelf', 'eu-size', 'eu-stack', 'eu-strings', 'eu-strip', 'eu-unstrip']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['sourceware.org/bzip2', 'tukaani.org/xz', 'zlib.net', 'facebook.com/zstd', 'linux:kernel.org/linux-headers']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.193.0', '0.192.0', '0.191.0', '0.190.0', '0.189.0']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +elfutils.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install elfutils.org' }; export type ElfutilsorgPackage = typeof elfutilsorgPackage