/** * **scons** - Substitute for classic 'make' tool with autoconf/automake functionality * * @domain `scons.org` * @programs `scons` * @version `4.10.1` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install scons.org` * @homepage https://www.scons.org/ * @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' * * const pkg = pantry.sconsorg * 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.10.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/scons-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const sconsorgPackage: { /** * 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: 'https://www.scons.org/'; githubUrl: 'https://github.com/SCons/scons'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install scons.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +scons.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install scons.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['scons']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['python.org~3.11', 'linux:gnu.org/gcc>=10']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.10.1', '4.10.0', '4.9.1', '4.9.0', '4.8.1', '4.8.0', '4.7.0', '4.6.0', '4.5.2']; aliases: readonly [] }; export type SconsorgPackage = typeof sconsorgPackage