/** * **opj** - Official repository of the OpenJPEG project * * @domain `openjpeg.org` * @programs `opj_compress`, `opj_decompress`, `opj_dump` * @version `2.5.4` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install openjpeg.org` * @homepage https://www.openjpeg.org/ * @dependencies `libpng.org^1`, `simplesystems.org/libtiff^4` * @buildDependencies `cmake.org@^3` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.openjpegorg * console.log(pkg.name) // "opj" * console.log(pkg.description) // "Official repository of the OpenJPEG project" * console.log(pkg.programs) // ["opj_compress", "opj_decompress", ...] * console.log(pkg.versions[0]) // "2.5.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/openjpeg-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const openjpegorgPackage: { /** * The display name of this package. */ name: 'opj'; /** * The canonical domain name for this package. */ domain: 'openjpeg.org'; /** * Brief description of what this package does. */ description: 'Official repository of the OpenJPEG project'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/openjpeg.org/package.yml'; homepageUrl: 'https://www.openjpeg.org/'; githubUrl: 'https://github.com/uclouvain/openjpeg'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install openjpeg.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +openjpeg.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install openjpeg.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['opj_compress', 'opj_decompress', 'opj_dump']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['libpng.org^1', 'simplesystems.org/libtiff^4']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org@^3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.5.4', '2.5.3', '2.5.2', '2.5.1', '2.5.0']; aliases: readonly [] }; export type OpenjpegorgPackage = typeof openjpegorgPackage