UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

68 lines 3.17 kB
/** * **openjdk.org** - Development kit for the Java programming language * * @domain `openjdk.org` * @programs `jar`, `jarsigner`, `java`, `javac`, `javadoc`, ... (+22 more) * @version `21.0.8.7` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install openjdk.org` * @dependencies `giflib.sourceforge.io`, `harfbuzz.org^8`, `libjpeg-turbo.org`, ... (+17 more) (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.openjdkorg * console.log(pkg.name) // "openjdk.org" * console.log(pkg.description) // "Development kit for the Java programming language" * console.log(pkg.programs) // ["jar", "jarsigner", ...] * console.log(pkg.versions[0]) // "21.0.8.7" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/openjdk-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const openjdkorgPackage: { /** * The display name of this package. */ name: 'openjdk.org'; /** * The canonical domain name for this package. */ domain: 'openjdk.org'; /** * Brief description of what this package does. */ description: 'Development kit for the Java programming language'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/openjdk.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 openjdk.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['jar', 'jarsigner', 'java', 'javac', 'javadoc', 'javap', 'jcmd', 'jconsole', 'jdb', 'jdeprscan', 'jdeps', 'jfr', 'jhsdb', 'jimage', 'jinfo', 'jlink', 'jmap', 'jmod', 'jps', 'jrunscript', 'jshell', 'jstack', 'jstat', 'jstatd', 'keytool', 'rmiregistry', 'serialver']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['giflib.sourceforge.io', 'harfbuzz.org^8', 'libjpeg-turbo.org', 'libpng.org', 'littlecms.com', 'openprinting.github.io/cups', 'info-zip.org/unzip', 'zlib.net', 'libzip.org', 'linux:alsa-project.org/alsa-lib', 'linux:freedesktop.org/fontconfig', 'linux:freetype.org', 'linux:x.org/x11', 'linux:x.org/exts', 'linux:x.org/xrandr', 'linux:x.org/xrender', 'linux:x.org/xt', 'linux:x.org/xtst', 'linux:info-zip.org/zip', 'linux:darwinsys.com/file']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['21.0.8.7', '21.0.7.4', '21.0.6.6', '21.0.3.6', '17.0.16.7', '17.0.11.4', '17.0.10.6', '11.0.28.5', '11.0.23.6']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +openjdk.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install openjdk.org' }; export type OpenjdkorgPackage = typeof openjdkorgPackage