/** * **atk** - pkgx package * * @domain `gnome.org/atk` * @version `2.38.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnome.org/atk` * @dependencies `gnome.org/glib@2` * @buildDependencies `mesonbuild.com@^0.63`, `gnu.org/gettext@^0.21` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnomeorgatk * console.log(pkg.name) // "atk" * console.log(pkg.versions[0]) // "2.38.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnome-org/atk.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnomeorgatkPackage: { /** * The display name of this package. */ name: 'atk'; /** * The canonical domain name for this package. */ domain: 'gnome.org/atk'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnome.org/atk/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/GNOME/atk'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnome.org/atk'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnome.org/atk -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnome.org/atk'; programs: readonly []; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['gnome.org/glib@2']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['mesonbuild.com@^0.63', 'gnu.org/gettext@^0.21']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.38.0']; aliases: readonly [] }; export type GnomeorgatkPackage = typeof gnomeorgatkPackage