ts-pkgx
Version:
A library & CLI for managing packages
59 lines • 1.85 kB
TypeScript
/**
* **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 -- $SHELL -i`
* @dependencies `libpng.org`, `linux:freeglut.sourceforge.io` (includes OS-specific dependencies with `os:package` format)
*
* @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: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +geuz.org/gl2ps -- $SHELL -i';
programs: readonly [];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
* OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`).
*/
dependencies: readonly ['libpng.org', 'linux:freeglut.sourceforge.io'];
/**
* 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