UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.65 kB
/** * **xpra** - Persistent remote applications for X11; screen sharing for X11, MacOS and MSWindows. * * @domain `xpra.org` * @programs `xpra` * @version `6.3.2` (11 versions available) * @versions From newest version to oldest. * * @install `launchpad install xpra` * @name `xpra` * @dependencies `pkgx.sh^1`, `python.org~3.11`, `cython.org`, ... (+6 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.xpra * // Or access via domain * const samePkg = pantry.xpraorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "xpra" * console.log(pkg.description) // "Persistent remote applications for X11; screen ..." * console.log(pkg.programs) // ["xpra"] * console.log(pkg.versions[0]) // "6.3.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/xpra-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xpraPackage: { /** * The display name of this package. */ name: 'xpra'; /** * The canonical domain name for this package. */ domain: 'xpra.org'; /** * Brief description of what this package does. */ description: 'Persistent remote applications for X11; screen sharing for X11, MacOS and MSWindows.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/xpra.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install xpra'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['xpra']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['pkgx.sh^1', 'python.org~3.11', 'cython.org', 'tukaani.org/xz', 'cairographics.org', 'cairographics.org/pycairo@1.26.1', 'freedesktop.org/pkg-config~0.29', 'gnome.org/PyGObject', 'gnome.org/glib']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['6.3.2', '6.3.1', '6.3.0', '6.2.5', '6.2.4', '6.2.3', '6.2.2', '6.2.1', '6.2.0', '6.1.3', '6.1.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) xpra -- $SHELL -i'; launchpadInstallCommand: 'launchpad install xpra' }; export type XpraPackage = typeof xpraPackage