/** * **gsf** - I/O abstraction library for dealing with structured file formats * * @domain `gnome.org/libgsf` * @programs `gsf`, `gsf-office-thumbnailer`, `gsf-vba-dump` * @version `1.14.53` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnome.org/libgsf` * @homepage https://gitlab.gnome.org/GNOME/libgsf * @dependencies `gnome.org/glib` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnomeorglibgsf * console.log(pkg.name) // "gsf" * console.log(pkg.description) // "I/O abstraction library for dealing with struct..." * console.log(pkg.programs) // ["gsf", "gsf-office-thumbnailer", ...] * console.log(pkg.versions[0]) // "1.14.53" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnome-org/libgsf.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnomeorglibgsfPackage: { /** * The display name of this package. */ name: 'gsf'; /** * The canonical domain name for this package. */ domain: 'gnome.org/libgsf'; /** * Brief description of what this package does. */ description: 'I/O abstraction library for dealing with structured file formats'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnome.org/libgsf/package.yml'; homepageUrl: 'https://gitlab.gnome.org/GNOME/libgsf'; githubUrl: 'https://github.com/GNOME/libgsf'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnome.org/libgsf'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnome.org/libgsf -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnome.org/libgsf'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gsf', 'gsf-office-thumbnailer', 'gsf-vba-dump']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['gnome.org/glib']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.14.53', '1.14.52', '1.14.51', '1.14.50']; aliases: readonly [] }; export type GnomeorglibgsfPackage = typeof gnomeorglibgsfPackage