ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.22 kB
TypeScript
/**
* **orc** - Oil Runtime Compiler (ORC)
*
* @domain `gstreamer.freedesktop.org/orc`
* @programs `orcc`, `orc-bugreport`
* @version `0.4.41` (8 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +gstreamer.freedesktop.org/orc -- $SHELL -i`
* @name `orc`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.orc
* // Or access via domain
* const samePkg = pantry.gstreamerfreedesktoporgorc
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "orc"
* console.log(pkg.description) // "Oil Runtime Compiler (ORC)"
* console.log(pkg.programs) // ["orcc", "orc-bugreport"]
* console.log(pkg.versions[0]) // "0.4.41" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/gstreamer-freedesktop-org/orc.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const orcPackage: {
/**
* The display name of this package.
*/
name: 'orc';
/**
* The canonical domain name for this package.
*/
domain: 'gstreamer.freedesktop.org/orc';
/**
* Brief description of what this package does.
*/
description: 'Oil Runtime Compiler (ORC)';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gstreamer.freedesktop.org/orc/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +gstreamer.freedesktop.org/orc -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['orcc', 'orc-bugreport'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.4.41', '0.4.40', '0.4.39', '0.4.38', '0.4.37', '0.4.36', '0.4.35', '0.4.34'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type OrcPackage = typeof orcPackage