UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

77 lines 2.58 kB
/** * **scons** - Substitute for classic 'make' tool with autoconf/automake functionality * * @domain `scons.org` * @programs `scons` * @version `4.9.1` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install scons` * @name `scons` * @dependencies `python.org~3.11`, `linux:gnu.org/gcc>=10` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.scons * // Or access via domain * const samePkg = pantry.sconsorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "scons" * console.log(pkg.description) // "Substitute for classic 'make' tool with autocon..." * console.log(pkg.programs) // ["scons"] * console.log(pkg.versions[0]) // "4.9.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/scons-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const sconsPackage: { /** * The display name of this package. */ name: 'scons'; /** * The canonical domain name for this package. */ domain: 'scons.org'; /** * Brief description of what this package does. */ description: 'Substitute for classic \'make\' tool with autoconf/automake functionality'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/scons.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 scons'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['scons']; 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 ['python.org~3.11', 'linux:gnu.org/gcc>=10']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.9.1', '4.9.0', '4.8.1', '4.8.0', '4.7.0', '4.6.0', '4.5.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) scons -- $SHELL -i'; launchpadInstallCommand: 'launchpad install scons' }; export type SconsPackage = typeof sconsPackage