/** * **xauth** - X.Org Applications: xauth * * @domain `x.org/xauth` * @programs `xauth` * @version `1.1.4` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install x.org/xauth` * @homepage https://www.x.org/ * @dependencies `x.org/x11`, `x.org/exts`, `x.org/xau`, ... (+3 more) (includes OS-specific dependencies with `os:package` format) * @buildDependencies `linux:gnu.org/gcc`, `linux:gnu.org/make` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.xorgxauth * console.log(pkg.name) // "xauth" * console.log(pkg.description) // "X.Org Applications: xauth" * console.log(pkg.programs) // ["xauth"] * console.log(pkg.versions[0]) // "1.1.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/x-org/xauth.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xorgxauthPackage: { /** * The display name of this package. */ name: 'xauth'; /** * The canonical domain name for this package. */ domain: 'x.org/xauth'; /** * Brief description of what this package does. */ description: 'X.Org Applications: xauth'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/x.org/xauth/package.yml'; homepageUrl: 'https://www.x.org/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install x.org/xauth'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +x.org/xauth -- $SHELL -i'; launchpadInstallCommand: 'launchpad install x.org/xauth'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['xauth']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['x.org/x11', 'x.org/exts', 'x.org/xau', 'x.org/xmu', 'linux:x.org/xcb', 'linux:x.org/xdmcp']; /** * Build dependencies for this package. * These are only required when building the package from source. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:gnu.org/gcc`). */ buildDependencies: readonly ['linux:gnu.org/gcc', 'linux:gnu.org/make']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.1.4', '1.1.3', '1.1.2']; aliases: readonly [] }; export type XorgxauthPackage = typeof xorgxauthPackage