UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

75 lines 3.26 kB
/** * **gtk3** - Toolkit for creating graphical user interfaces * * @domain `gtk.org/gtk3` * @programs `gtk-builder-tool`, `gtk-encode-symbolic-svg`, `gtk-launch`, `gtk-query-immodules-3.0`, `gtk-query-settings`, ... (+5 more) * @version `3.24.38` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install +gtk.org/gtk3 -- $SHELL -i` * @name `gtk3` * @dependencies `gnome.org/atk`, `gnome.org/gdk-pixbuf`, `gnome.org/glib`, ... (+18 more) (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gtk3 * // Or access via domain * const samePkg = pantry.gtkorggtk3 * console.log(pkg === samePkg) // true * console.log(pkg.name) // "gtk3" * console.log(pkg.description) // "Toolkit for creating graphical user interfaces" * console.log(pkg.programs) // ["gtk-builder-tool", "gtk-encode-symbolic-svg", ...] * console.log(pkg.versions[0]) // "3.24.38" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gtk-org/gtk3.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gtk3Package: { /** * The display name of this package. */ name: 'gtk3'; /** * The canonical domain name for this package. */ domain: 'gtk.org/gtk3'; /** * Brief description of what this package does. */ description: 'Toolkit for creating graphical user interfaces'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gtk.org/gtk3/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +gtk.org/gtk3 -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gtk-builder-tool', 'gtk-encode-symbolic-svg', 'gtk-launch', 'gtk-query-immodules-3.0', 'gtk-query-settings', 'gtk-update-icon-cache', 'gtk3-demo', 'gtk3-demo-application', 'gtk3-icon-browser', 'gtk3-widget-factory']; 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 ['gnome.org/atk', 'gnome.org/gdk-pixbuf', 'gnome.org/glib', 'gnome.org/gsettings-desktop-schemas', 'freedesktop.org/icon-theme', 'github.com/anholt/libepoxy', 'gnome.org/pango', 'gnome.org/libxslt', 'x.org/x11', 'x.org/exts', 'x.org/xrender', 'x.org/xrandr', 'x.org/xi', 'ebassi.github.io/graphene', 'xkbcommon.org', 'debian.org/iso-codes', 'freedesktop.org/at-spi2-atk', 'linux:cairographics.org', 'linux:wayland.freedesktop.org/protocols', 'linux:x.org/protocol', 'linux:openprinting.github.io/cups']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.24.38']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type Gtk3Package = typeof gtk3Package