ts-pkgx
Version:
A library & CLI for managing packages
58 lines • 1.92 kB
TypeScript
/**
* **libstdcxx** - pkgx package
*
* @domain `gnu.org/gcc/libstdcxx`
* @version `15.1.0` (6 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +gnu.org/gcc/libstdcxx -- $SHELL -i`
* @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.gnuorggcclibstdcxx
* console.log(pkg.name) // "libstdcxx"
* console.log(pkg.versions[0]) // "15.1.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/gnu-org/gcc/libstdcxx.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const gnuorggcclibstdcxxPackage: {
/**
* The display name of this package.
*/
name: 'libstdcxx';
/**
* The canonical domain name for this package.
*/
domain: 'gnu.org/gcc/libstdcxx';
/**
* Brief description of what this package does.
*/
description: '';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/gcc/libstdcxx/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/libstdcxx -- $SHELL -i';
programs: readonly [];
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', '12.4.0'];
aliases: readonly []
};
export type GnuorggcclibstdcxxPackage = typeof gnuorggcclibstdcxxPackage