ts-pkgx
Version:
A library & CLI for managing packages
68 lines • 2.64 kB
TypeScript
/**
* **openprinting.github.io/cups** - Common UNIX Printing System
*
* @domain `openprinting.github.io/cups`
* @programs `cups-config`, `ippeveprinter`, `ipptool`
* @version `2.4.12` (7 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install openprinting.github.io/cups`
* @dependencies `kerberos.org`, `zlib.net`, `linux:openssl.org^1.1` (includes OS-specific dependencies with `os:package` format)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.openprintinggithubiocups
* console.log(pkg.name) // "openprinting.github.io/cups"
* console.log(pkg.description) // "Common UNIX Printing System"
* console.log(pkg.programs) // ["cups-config", "ippeveprinter", ...]
* console.log(pkg.versions[0]) // "2.4.12" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/openprinting-github-io/cups.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const openprintinggithubiocupsPackage: {
/**
* The display name of this package.
*/
name: 'openprinting.github.io/cups';
/**
* The canonical domain name for this package.
*/
domain: 'openprinting.github.io/cups';
/**
* Brief description of what this package does.
*/
description: 'Common UNIX Printing System';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/openprinting.github.io/cups/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install openprinting.github.io/cups';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['cups-config', 'ippeveprinter', 'ipptool'];
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 ['kerberos.org', 'zlib.net', 'linux:openssl.org^1.1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.4.12', '2.4.11', '2.4.10', '2.4.9', '2.4.8', '2.4.7', '2.4.6'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +openprinting.github.io/cups -- $SHELL -i';
launchpadInstallCommand: 'launchpad install openprinting.github.io/cups'
};
export type OpenprintinggithubiocupsPackage = typeof openprintinggithubiocupsPackage