/** * **glslang** - Khronos-reference front end for GLSL/ESSL, partial front end for HLSL, and a SPIR-V generator. * * @domain `khronos.org/glslang` * @programs `glslang`, `glslangValidator`, `spirv-remap` * @version `16.1.0` (15 versions available) * @versions From newest version to oldest. * * @install `launchpad install khronos.org/glslang` * @homepage https://www.khronos.org/opengles/sdk/tools/Reference-Compiler/ * @buildDependencies `cmake.org`, `python.org@~3.11` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.khronosorgglslang * console.log(pkg.name) // "glslang" * console.log(pkg.description) // "Khronos-reference front end for GLSL/ESSL, part..." * console.log(pkg.programs) // ["glslang", "glslangValidator", ...] * console.log(pkg.versions[0]) // "16.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/khronos-org/glslang.md * @see https://ts-pkgx.netlify.app/usage */ export declare const khronosorgglslangPackage: { /** * The display name of this package. */ name: 'glslang'; /** * The canonical domain name for this package. */ domain: 'khronos.org/glslang'; /** * Brief description of what this package does. */ description: 'Khronos-reference front end for GLSL/ESSL, partial front end for HLSL, and a SPIR-V generator.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/khronos.org/glslang/package.yml'; homepageUrl: 'https://www.khronos.org/opengles/sdk/tools/Reference-Compiler/'; githubUrl: 'https://github.com/KhronosGroup/glslang'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install khronos.org/glslang'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +khronos.org/glslang -- $SHELL -i'; launchpadInstallCommand: 'launchpad install khronos.org/glslang'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['glslang', 'glslangValidator', 'spirv-remap']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org', 'python.org@~3.11']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['16.1.0', '16.0.0', '15.4.0', '15.3.0', '15.2.0', '15.1.0', '15.0.0', '14.3.0', '14.2.0', '14.1.0', '14.0.0', '13.1.1', '13.1.0', '13.0.0', '12.3.1']; aliases: readonly [] }; export type KhronosorgglslangPackage = typeof khronosorgglslangPackage