ts-pkgx
Version:
A library & CLI for managing packages
77 lines • 2.68 kB
TypeScript
/**
* **gnuplot** - Command-driven, interactive function plotting
*
* @domain `gnuplot.info`
* @programs `gnuplot`
* @version `6.0.3` (9 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install gnuplot`
* @name `gnuplot`
* @dependencies `libgd.github.io`, `lua.org`, `gnome.org/pango`, ... (+2 more) (includes OS-specific dependencies with `os:package` format)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.gnuplot
* // Or access via domain
* const samePkg = pantry.gnuplotinfo
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "gnuplot"
* console.log(pkg.description) // "Command-driven, interactive function plotting"
* console.log(pkg.programs) // ["gnuplot"]
* console.log(pkg.versions[0]) // "6.0.3" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/gnuplot-info.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const gnuplotPackage: {
/**
* The display name of this package.
*/
name: 'gnuplot';
/**
* The canonical domain name for this package.
*/
domain: 'gnuplot.info';
/**
* Brief description of what this package does.
*/
description: 'Command-driven, interactive function plotting';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnuplot.info/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install gnuplot';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['gnuplot'];
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 ['libgd.github.io', 'lua.org', 'gnome.org/pango', 'gnu.org/readline', 'linux:github.com/AOMediaCodec/libavif^0.11'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['6.0.3', '6.0.2', '6.0.1', '6.0.0', '5.4.10', '5.4.9', '5.4.8', '5.4.7', '5.4.6'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) gnuplot -- $SHELL -i';
launchpadInstallCommand: 'launchpad install gnuplot'
};
export type GnuplotPackage = typeof gnuplotPackage