UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 2.38 kB
/** * **gnu.org/plotutils** - C/C++ function library for exporting 2-D vector graphics * * @domain `gnu.org/plotutils` * @programs `double`, `graph`, `ode`, `pic2plot`, `plot`, ... (+3 more) * @version `2.6.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/plotutils` * @dependencies `libpng.org^1.6`, `libraw.org^0.21` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorgplotutils * console.log(pkg.name) // "gnu.org/plotutils" * console.log(pkg.description) // "C/C++ function library for exporting 2-D vector..." * console.log(pkg.programs) // ["double", "graph", ...] * console.log(pkg.versions[0]) // "2.6.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/plotutils.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorgplotutilsPackage: { /** * The display name of this package. */ name: 'gnu.org/plotutils'; /** * The canonical domain name for this package. */ domain: 'gnu.org/plotutils'; /** * Brief description of what this package does. */ description: 'C/C++ function library for exporting 2-D vector graphics'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/plotutils/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnu.org/plotutils'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['double', 'graph', 'ode', 'pic2plot', 'plot', 'plotfont', 'spline', 'tek2plot']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['libpng.org^1.6', 'libraw.org^0.21']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.6.0']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/plotutils -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/plotutils' }; export type GnuorgplotutilsPackage = typeof gnuorgplotutilsPackage