/** * **exiftool** - Perl lib for reading and writing EXIF metadata * * @domain `exiftool.org` * @programs `exiftool` * @version `13.36.0` (10 versions available) * @versions From newest version to oldest. * * @install `launchpad install exiftool.org` * @homepage https://exiftool.org * @dependencies `perl.org` * @buildDependencies `perl.org` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.exiftoolorg * console.log(pkg.name) // "exiftool" * console.log(pkg.description) // "Perl lib for reading and writing EXIF metadata" * console.log(pkg.programs) // ["exiftool"] * console.log(pkg.versions[0]) // "13.36.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/exiftool-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const exiftoolorgPackage: { /** * The display name of this package. */ name: 'exiftool'; /** * The canonical domain name for this package. */ domain: 'exiftool.org'; /** * Brief description of what this package does. */ description: 'Perl lib for reading and writing EXIF metadata'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/exiftool.org/package.yml'; homepageUrl: 'https://exiftool.org'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install exiftool.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +exiftool.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install exiftool.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['exiftool']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['perl.org']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['perl.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['13.36.0', '13.35.0', '13.30.0', '13.25.0', '13.10.0', '13.0.0', '12.76.0', '12.75.0', '12.70.0', '12.60.0']; aliases: readonly [] }; export type ExiftoolorgPackage = typeof exiftoolorgPackage