ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 3.7 kB
TypeScript
/**
* **qemu** - Generic machine emulator and virtualizer
*
* @domain `qemu.org`
* @programs `qemu-img`, `qemu-edid`, `qemu-io`, `qemu-nbd`, `qemu-storage-daemon`, ... (+29 more)
* @version `10.0.2` (51 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +qemu.org -- $SHELL -i`
* @aliases `qemu`
* @dependencies `gnome.org/glib@2`, `capstone-engine.org^4`, `pixman.org^0`, ... (+7 more)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.qemu
* // Or access via domain
* const samePkg = pantry.qemuorg
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "qemu.org"
* console.log(pkg.description) // "Generic machine emulator and virtualizer"
* console.log(pkg.programs) // ["qemu-img", "qemu-edid", ...]
* console.log(pkg.versions[0]) // "10.0.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/qemu-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const qemuPackage: {
/**
* The display name of this package.
*/
name: 'qemu.org';
/**
* The canonical domain name for this package.
*/
domain: 'qemu.org';
/**
* Brief description of what this package does.
*/
description: 'Generic machine emulator and virtualizer';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/qemu.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 +qemu.org -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['qemu-img', 'qemu-edid', 'qemu-io', 'qemu-nbd', 'qemu-storage-daemon', 'qemu-system-aarch64', 'qemu-system-alpha', 'qemu-system-arm', 'qemu-system-avr', 'qemu-system-hppa', 'qemu-system-i386', 'qemu-system-loongarch64', 'qemu-system-m68k', 'qemu-system-microblaze', 'qemu-system-microblazeel', 'qemu-system-mips', 'qemu-system-mips64', 'qemu-system-mips64el', 'qemu-system-mipsel', 'qemu-system-or1k', 'qemu-system-ppc', 'qemu-system-ppc64', 'qemu-system-riscv32', 'qemu-system-riscv64', 'qemu-system-rx', 'qemu-system-s390x', 'qemu-system-sh4', 'qemu-system-sh4eb', 'qemu-system-sparc', 'qemu-system-sparc64', 'qemu-system-tricore', 'qemu-system-x86_64', 'qemu-system-xtensa', 'qemu-system-xtensaeb'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['gnome.org/glib@2', 'capstone-engine.org^4', 'pixman.org^0', 'gnutls.org^3', 'freedesktop.org/slirp^4', 'virtualsquare.org/vde^2', 'facebook.com/zstd^1', 'invisible-island.net/ncurses^6', 'libssh.org^0', 'libpng.org^1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['10.0.2', '9.2.4', '9.2.3', '9.2.2', '9.2.1', '9.2.0', '9.1.3', '9.1.2', '9.1.1', '9.1.0', '9.0.4', '9.0.3', '9.0.2', '9.0.1', '9.0.0', '8.2.10', '8.2.9', '8.2.8', '8.2.7', '8.2.6', '8.2.5', '8.2.4', '8.2.3', '8.2.2', '8.2.1', '8.2.0', '8.1.5', '8.1.4', '8.1.3', '8.1.2', '8.1.1', '8.1.0', '8.0.5', '8.0.3', '8.0.2', '8.0.0', '7.2.18', '7.2.17', '7.2.16', '7.2.15', '7.2.14', '7.2.13', '7.2.12', '7.2.11', '7.2.10', '7.2.9', '7.2.8', '7.2.7', '7.2.6', '7.2.4', '7.2.3'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['qemu']
};
export type QemuPackage = typeof qemuPackage