ts-pkgx
Version:
A library & CLI for managing packages
70 lines • 3.1 kB
TypeScript
/**
* **glib** - Core application library for C
*
* @domain `gnome.org/glib`
* @programs `gdbus`, `gdbus-codegen`, `gio`, `gio-querymodules`, `glib-compile-resources`, ... (+9 more)
* @version `2.85.1` (45 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +gnome.org/glib -- $SHELL -i`
* @dependencies `gnu.org/gettext^0.21`, `sourceware.org/libffi@3`, `pcre.org@8`, ... (+2 more)
* @companions `gnome.org/gsettings-desktop-schemas`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.gnomeorgglib
* console.log(pkg.name) // "glib"
* console.log(pkg.description) // "Core application library for C"
* console.log(pkg.programs) // ["gdbus", "gdbus-codegen", ...]
* console.log(pkg.versions[0]) // "2.85.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/gnome-org/glib.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const gnomeorgglibPackage: {
/**
* The display name of this package.
*/
name: 'glib';
/**
* The canonical domain name for this package.
*/
domain: 'gnome.org/glib';
/**
* Brief description of what this package does.
*/
description: 'Core application library for C';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnome.org/glib/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/glib -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['gdbus', 'gdbus-codegen', 'gio', 'gio-querymodules', 'glib-compile-resources', 'glib-compile-schemas', 'glib-genmarshal', 'glib-gettextize', 'glib-mkenums', 'gobject-query', 'gresource', 'gsettings', 'gtester', 'gtester-report'];
/**
* Related packages that work well with this package.
* Consider installing these for enhanced functionality.
*/
companions: readonly ['gnome.org/gsettings-desktop-schemas'];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['gnu.org/gettext^0.21', 'sourceware.org/libffi@3', 'pcre.org@8', 'pcre.org/v2@10', 'python.org^3 # several of the bins are scripts'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.85.1', '2.85.0', '2.84.3', '2.84.2', '2.84.1', '2.84.0', '2.83.5', '2.83.4', '2.83.3', '2.83.2', '2.83.0', '2.82.5', '2.82.4', '2.82.3', '2.82.2', '2.82.1', '2.82.0', '2.81.2', '2.81.0', '2.80.5', '2.80.4', '2.80.3', '2.80.2', '2.80.1', '2.80.0', '2.79.3', '2.79.2', '2.79.1', '2.79.0', '2.78.6', '2.78.5', '2.78.3', '2.78.2', '2.78.1', '2.78.0', '2.77.3', '2.77.2', '2.77.1', '2.77.0', '2.76.6', '2.76.5', '2.76.4', '2.76.3', '2.76.2', '2.72.4'];
aliases: readonly []
};
export type GnomeorgglibPackage = typeof gnomeorgglibPackage