/** * **jasper** - Official Repository for the JasPer Image Coding Toolkit * * @domain `github.com/jasper-software/jasper` * @programs `jasper` * @version `4.2.8` (14 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/jasper-software/jasper` * @homepage https://ece.engr.uvic.ca/~frodo/jasper/ * @dependencies `libjpeg-turbo.org^2` * @buildDependencies `cmake.org@^3` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomjaspersoftwarejasper * console.log(pkg.name) // "jasper" * console.log(pkg.description) // "Official Repository for the JasPer Image Coding..." * console.log(pkg.programs) // ["jasper"] * console.log(pkg.versions[0]) // "4.2.8" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/jasper-software/jasper.md * @see https://ts-pkgx.netlify.app/usage */ export declare const jasperPackage: { /** * The display name of this package. */ name: 'jasper'; /** * The canonical domain name for this package. */ domain: 'github.com/jasper-software/jasper'; /** * Brief description of what this package does. */ description: 'Official Repository for the JasPer Image Coding Toolkit'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/jasper-software/jasper/package.yml'; homepageUrl: 'https://ece.engr.uvic.ca/~frodo/jasper/'; githubUrl: 'https://github.com/jasper-software/jasper'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/jasper-software/jasper'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/jasper-software/jasper -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/jasper-software/jasper'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['jasper']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['libjpeg-turbo.org^2']; /** * 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 ['4.2.8', '4.2.7', '4.2.6', '4.2.5', '4.2.4', '4.2.3', '4.2.2', '4.2.1', '4.2.0', '4.1.2', '4.1.1', '4.1.0', '4.0.1', '4.0.0']; aliases: readonly [] }; export type JasperPackage = typeof jasperPackage