/** * **xcursor** - pkgx package * * @domain `x.org/xcursor` * @version `1.2.3` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install x.org/xcursor` * @dependencies `x.org/x11`, `x.org/xfixes`, `x.org/xrender` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.xorgxcursor * console.log(pkg.name) // "xcursor" * console.log(pkg.versions[0]) // "1.2.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/x-org/xcursor.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xorgxcursorPackage: { /** * The display name of this package. */ name: 'xcursor'; /** * The canonical domain name for this package. */ domain: 'x.org/xcursor'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/x.org/xcursor/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install x.org/xcursor'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +x.org/xcursor -- $SHELL -i'; launchpadInstallCommand: 'launchpad install x.org/xcursor'; programs: readonly []; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['x.org/x11', 'x.org/xfixes', 'x.org/xrender']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.2.3', '1.2.2', '1.2.1']; aliases: readonly [] }; export type XorgxcursorPackage = typeof xorgxcursorPackage