/** * **glfw** - A multi-platform library for OpenGL, OpenGL ES, Vulkan, window and input * * @domain `glfw.org` * @version `3.4.0` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install glfw.org` * @homepage https://www.glfw.org * @dependencies `linux:freeglut.sourceforge.io^3.4`, `linux:x.org/xcursor^1.2`, `linux:xkbcommon.org^1.0`, ... (+1 more) (includes OS-specific dependencies with `os:package` format) * @buildDependencies `cmake.org` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.glfworg * console.log(pkg.name) // "glfw" * console.log(pkg.description) // "A multi-platform library for OpenGL, OpenGL ES,..." * console.log(pkg.versions[0]) // "3.4.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/glfw-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const glfworgPackage: { /** * The display name of this package. */ name: 'glfw'; /** * The canonical domain name for this package. */ domain: 'glfw.org'; /** * Brief description of what this package does. */ description: 'A multi-platform library for OpenGL, OpenGL ES, Vulkan, window and input'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/glfw.org/package.yml'; homepageUrl: 'https://www.glfw.org'; githubUrl: 'https://github.com/glfw/glfw'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install glfw.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +glfw.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install glfw.org'; programs: readonly []; 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 ['linux:freeglut.sourceforge.io^3.4', 'linux:x.org/xcursor^1.2', 'linux:xkbcommon.org^1.0', 'linux:mesa3d.org^23.3']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.4.0', '3.3.10', '3.3.9']; aliases: readonly [] }; export type GlfworgPackage = typeof glfworgPackage