UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

66 lines 2.39 kB
/** * **gnu.org/gcc** - pkgx package * * @domain `gnu.org/gcc` * @programs `ar`, `cc`, `c++`, `gc++`, `cpp`, ... (+12 more) * @version `15.1.0` (13 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/gcc` * @dependencies `gnu.org/binutils`, `gnu.org/gmp>=4.2`, `gnu.org/mpfr>=2.4.0`, ... (+2 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorggcc * console.log(pkg.name) // "gnu.org/gcc" * console.log(pkg.programs) // ["ar", "cc", ...] * console.log(pkg.versions[0]) // "15.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/gcc.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorggccPackage: { /** * The display name of this package. */ name: 'gnu.org/gcc'; /** * The canonical domain name for this package. */ domain: 'gnu.org/gcc'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/gcc/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/gcc'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ar', 'cc', 'c++', 'gc++', 'cpp', 'g++', 'gcc', 'gcc-ar', 'gcc-nm', 'gcc-ranlib', 'gcov', 'gcov-dump', 'gcov-tool', 'gfortran', 'lto-dump', 'nm', 'ranlib']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gnu.org/binutils', 'gnu.org/gmp>=4.2', 'gnu.org/mpfr>=2.4.0', 'gnu.org/mpc>=0.8.0', 'zlib.net^1.3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['15.1.0', '14.3.0', '14.2.0', '14.1.0', '13.3.0', '13.2.0', '13.1.0', '12.5.0', '12.4.0', '12.3.0', '12.2.0', '11.4.0', '10.5.0']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/gcc -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/gcc' }; export type GnuorggccPackage = typeof gnuorggccPackage