UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.82 kB
/** * **gdk-pixbuf** - Toolkit for image loading and pixel buffer manipulation * * @domain `gnome.org/gdk-pixbuf` * @programs `gdk-pixbuf-csource`, `gdk-pixbuf-pixdata`, `gdk-pixbuf-query-loaders`, `gdk-pixbuf-thumbnailer` * @version `2.43.2` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install +gnome.org/gdk-pixbuf -- $SHELL -i` * @name `gdk-pixbuf` * @dependencies `ijg.org^9.6 # needs fixed major; sadly this includes the character > v9f`, `gnome.org/glib@2`, `libpng.org@1`, ... (+1 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gdkpixbuf * // Or access via domain * const samePkg = pantry.gnomeorggdkpixbuf * console.log(pkg === samePkg) // true * console.log(pkg.name) // "gdk-pixbuf" * console.log(pkg.description) // "Toolkit for image loading and pixel buffer mani..." * console.log(pkg.programs) // ["gdk-pixbuf-csource", "gdk-pixbuf-pixdata", ...] * console.log(pkg.versions[0]) // "2.43.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnome-org/gdk-pixbuf.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gdkpixbufPackage: { /** * The display name of this package. */ name: 'gdk-pixbuf'; /** * The canonical domain name for this package. */ domain: 'gnome.org/gdk-pixbuf'; /** * Brief description of what this package does. */ description: 'Toolkit for image loading and pixel buffer manipulation'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnome.org/gdk-pixbuf/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/gdk-pixbuf -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gdk-pixbuf-csource', 'gdk-pixbuf-pixdata', 'gdk-pixbuf-query-loaders', 'gdk-pixbuf-thumbnailer']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['ijg.org^9.6 # needs fixed major; sadly this includes the character > v9f', 'gnome.org/glib@2', 'libpng.org@1', 'freedesktop.org/shared-mime-info^2 #FIXME only on Linux']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.43.2', '2.42.9', '2.42.8']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type GdkpixbufPackage = typeof gdkpixbufPackage