/** * **mesa-glu** - pkgx package * * @domain `freedesktop.org/mesa-glu` * @version `9.0.3` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install freedesktop.org/mesa-glu` * @dependencies `mesa3d.org` * @buildDependencies `gnu.org/make`, `mesonbuild.com` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.freedesktoporgmesaglu * console.log(pkg.name) // "mesa-glu" * console.log(pkg.versions[0]) // "9.0.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/freedesktop-org/mesa-glu.md * @see https://ts-pkgx.netlify.app/usage */ export declare const freedesktoporgmesagluPackage: { /** * The display name of this package. */ name: 'mesa-glu'; /** * The canonical domain name for this package. */ domain: 'freedesktop.org/mesa-glu'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/freedesktop.org/mesa-glu/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install freedesktop.org/mesa-glu'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +freedesktop.org/mesa-glu -- $SHELL -i'; launchpadInstallCommand: 'launchpad install freedesktop.org/mesa-glu'; programs: readonly []; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['mesa3d.org']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/make', 'mesonbuild.com']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['9.0.3']; aliases: readonly [] }; export type FreedesktoporgmesagluPackage = typeof freedesktoporgmesagluPackage