UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.84 kB
/** * **g-ir** - Generate introspection data for GObject libraries * * @domain `gnome.org/gobject-introspection` * @programs `g-ir-annotation-tool`, `g-ir-compiler`, `g-ir-generate`, `g-ir-inspect`, `g-ir-scanner` * @version `1.84.0` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install +gnome.org/gobject-introspection -- $SHELL -i` * @aliases `g-ir` * @dependencies `gnome.org/glib@2`, `sourceware.org/libffi@3`, `gnu.org/bison^3 #NOTE macOS provides v2`, ... (+2 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.gir * // Or access via domain * const samePkg = pantry.gnomeorggobjectintrospection * console.log(pkg === samePkg) // true * console.log(pkg.name) // "gobject-introspection" * console.log(pkg.description) // "Generate introspection data for GObject libraries" * console.log(pkg.programs) // ["g-ir-annotation-tool", "g-ir-compiler", ...] * console.log(pkg.versions[0]) // "1.84.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnome-org/gobject-introspection.md * @see https://ts-pkgx.netlify.app/usage */ export declare const girPackage: { /** * The display name of this package. */ name: 'gobject-introspection'; /** * The canonical domain name for this package. */ domain: 'gnome.org/gobject-introspection'; /** * Brief description of what this package does. */ description: 'Generate introspection data for GObject libraries'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnome.org/gobject-introspection/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +gnome.org/gobject-introspection -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['g-ir-annotation-tool', 'g-ir-compiler', 'g-ir-generate', 'g-ir-inspect', 'g-ir-scanner']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gnome.org/glib@2', 'sourceware.org/libffi@3', 'gnu.org/bison^3 #NOTE macOS provides v2', 'python.org>=3<3.12', 'github.com/westes/flex@2']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.84.0', '1.83.4', '1.83.2', '1.82.0', '1.72.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['g-ir'] }; export type GirPackage = typeof girPackage