/** * **x11** - pkgx package * * @domain `x.org/x11` * @version `1.8.12` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install x.org/x11` * @dependencies `x.org/xcb^1`, `x.org/protocol` * @buildDependencies `x.org/xtrans@^1`, `gnu.org/sed` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.xorgx11 * console.log(pkg.name) // "x11" * console.log(pkg.versions[0]) // "1.8.12" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/x-org/x11.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xorgx11Package: { /** * The display name of this package. */ name: 'x11'; /** * The canonical domain name for this package. */ domain: 'x.org/x11'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/x.org/x11/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install x.org/x11'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +x.org/x11 -- $SHELL -i'; launchpadInstallCommand: 'launchpad install x.org/x11'; programs: readonly []; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['x.org/xcb^1', 'x.org/protocol']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['x.org/xtrans@^1', 'gnu.org/sed']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.8.12', '1.8.11', '1.8.10', '1.8.9', '1.8.8', '1.8.7', '1.8.6', '1.8.5', '1.8.4']; aliases: readonly [] }; export type Xorgx11Package = typeof xorgx11Package