/** * **ijg** - pkgx package * * @domain `ijg.org` * @programs `cjpeg`, `djpeg`, `jpegtran`, `rdjpgcom`, `wrjpgcom` * @version `9f` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install ijg.org` * @buildDependencies `curl.se` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.ijgorg * console.log(pkg.name) // "ijg" * console.log(pkg.programs) // ["cjpeg", "djpeg", ...] * console.log(pkg.versions[0]) // "9f" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/ijg-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const ijgorgPackage: { /** * The display name of this package. */ name: 'ijg'; /** * The canonical domain name for this package. */ domain: 'ijg.org'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/ijg.org/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install ijg.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +ijg.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install ijg.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cjpeg', 'djpeg', 'jpegtran', 'rdjpgcom', 'wrjpgcom']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['curl.se']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['9f', '9e', '9.5.0']; aliases: readonly [] }; export type IjgorgPackage = typeof ijgorgPackage