UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

66 lines 2.43 kB
/** * **fltk.org** - FLTK - Fast Light Tool Kit - https://github.com/fltk/fltk - cross platform GUI development * * @domain `fltk.org` * @programs `fluid`, `fltk-config` * @version `1.4.3` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install +fltk.org -- $SHELL -i` * @dependencies `libjpeg-turbo.org^2`, `libpng.org^1`, `linux:x.org/xft^2`, ... (+2 more) (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.fltkorg * console.log(pkg.name) // "fltk.org" * console.log(pkg.description) // "FLTK - Fast Light Tool Kit - https://github.com..." * console.log(pkg.programs) // ["fluid", "fltk-config"] * console.log(pkg.versions[0]) // "1.4.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/fltk-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const fltkorgPackage: { /** * The display name of this package. */ name: 'fltk.org'; /** * The canonical domain name for this package. */ domain: 'fltk.org'; /** * Brief description of what this package does. */ description: 'FLTK - Fast Light Tool Kit - https://github.com/fltk/fltk - cross platform GUI development'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/fltk.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +fltk.org -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['fluid', 'fltk-config']; 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 ['libjpeg-turbo.org^2', 'libpng.org^1', 'linux:x.org/xft^2', 'linux:x.org/xt^1', 'linux:freedesktop.org/mesa-glu^9']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.4.3', '1.4.2', '1.4.1', '1.3.11', '1.3.10', '1.3.9']; aliases: readonly [] }; export type FltkorgPackage = typeof fltkorgPackage