/** * **tcl-lang** - Tool Command Language * * @domain `tcl-lang.org` * @programs `tclsh`, `wish`, `critcl` * @version `9.0.3` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install tcl-lang.org` * @homepage https://www.tcl-lang.org * @dependencies `openssl.org^1.1`, `zlib.net^1.3`, `freetype.org^2`, ... (+3 more) * @buildDependencies `gnu.org/patch`, `linux:curl.se`, `linux:tukaani.org/xz` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.tcllangorg * console.log(pkg.name) // "tcl-lang" * console.log(pkg.description) // "Tool Command Language" * console.log(pkg.programs) // ["tclsh", "wish", ...] * console.log(pkg.versions[0]) // "9.0.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/tcl-lang-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const tcllangorgPackage: { /** * The display name of this package. */ name: 'tcl-lang'; /** * The canonical domain name for this package. */ domain: 'tcl-lang.org'; /** * Brief description of what this package does. */ description: 'Tool Command Language'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/tcl-lang.org/package.yml'; homepageUrl: 'https://www.tcl-lang.org'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install tcl-lang.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +tcl-lang.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install tcl-lang.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['tclsh', 'wish', 'critcl']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['openssl.org^1.1', 'zlib.net^1.3', 'freetype.org^2', 'freedesktop.org/pkg-config^0.29', 'x.org/x11=1.8.11', 'x.org/exts^1']; /** * Build dependencies for this package. * These are only required when building the package from source. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:gnu.org/gcc`). */ buildDependencies: readonly ['gnu.org/patch', 'linux:curl.se', 'linux:tukaani.org/xz']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['9.0.3', '9.0.2', '9.0.1', '9.0.0', '8.6.17', '8.6.16', '8.6.15', '8.6.14', '8.6.13']; aliases: readonly [] }; export type TcllangorgPackage = typeof tcllangorgPackage