/** * **gl2ps** - pkgx package * * @domain `geuz.org/gl2ps` * @version `1.4.2` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install geuz.org/gl2ps` * @dependencies `libpng.org`, `linux:freeglut.sourceforge.io` (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.geuzorggl2ps * console.log(pkg.name) // "gl2ps" * console.log(pkg.versions[0]) // "1.4.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/geuz-org/gl2ps.md * @see https://ts-pkgx.netlify.app/usage */ export declare const geuzorggl2psPackage: { /** * The display name of this package. */ name: 'gl2ps'; /** * The canonical domain name for this package. */ domain: 'geuz.org/gl2ps'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/geuz.org/gl2ps/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install geuz.org/gl2ps'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +geuz.org/gl2ps -- $SHELL -i'; launchpadInstallCommand: 'launchpad install geuz.org/gl2ps'; 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 ['libpng.org', 'linux:freeglut.sourceforge.io']; /** * 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 ['1.4.2']; aliases: readonly [] }; export type Geuzorggl2psPackage = typeof geuzorggl2psPackage