UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

68 lines 2.71 kB
/** * **libraw.org** - Library for reading RAW files from digital photo cameras * * @domain `libraw.org` * @programs `4channels`, `dcraw_emu`, `dcraw_half`, `half_mt`, `mem_image`, ... (+6 more) * @version `0.21.4` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install libraw.org` * @dependencies `github.com/jasper-software/jasper`, `libjpeg-turbo.org`, `littlecms.com`, ... (+2 more) (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.libraworg * console.log(pkg.name) // "libraw.org" * console.log(pkg.description) // "Library for reading RAW files from digital phot..." * console.log(pkg.programs) // ["4channels", "dcraw_emu", ...] * console.log(pkg.versions[0]) // "0.21.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/libraw-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const libraworgPackage: { /** * The display name of this package. */ name: 'libraw.org'; /** * The canonical domain name for this package. */ domain: 'libraw.org'; /** * Brief description of what this package does. */ description: 'Library for reading RAW files from digital photo cameras'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libraw.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 libraw.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['4channels', 'dcraw_emu', 'dcraw_half', 'half_mt', 'mem_image', 'multirender_test', 'postprocessing_benchmark', 'raw-identify', 'rawtextdump', 'simple_dcraw', 'unprocessed_raw']; 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 ['github.com/jasper-software/jasper', 'libjpeg-turbo.org', 'littlecms.com', 'zlib.net', 'darwin:openmp.llvm.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.21.4', '0.21.3', '0.21.2', '0.21.1']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +libraw.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install libraw.org' }; export type LibraworgPackage = typeof libraworgPackage