/** * **libpng** - LIBPNG: Portable Network Graphics support, official libpng repository * * @domain `libpng.org` * @programs `libpng-config`, `libpng16-config`, `png-fix-itxt`, `pngfix` * @version `1.6.53` (16 versions available) * @versions From newest version to oldest. * * @install `launchpad install libpng.org` * @homepage http://www.libpng.org/pub/png/libpng.html * @dependencies `zlib.net@1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.libpngorg * console.log(pkg.name) // "libpng" * console.log(pkg.description) // "LIBPNG: Portable Network Graphics support, offi..." * console.log(pkg.programs) // ["libpng-config", "libpng16-config", ...] * console.log(pkg.versions[0]) // "1.6.53" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/libpng-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const libpngorgPackage: { /** * The display name of this package. */ name: 'libpng'; /** * The canonical domain name for this package. */ domain: 'libpng.org'; /** * Brief description of what this package does. */ description: 'LIBPNG: Portable Network Graphics support, official libpng repository'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libpng.org/package.yml'; homepageUrl: 'http://www.libpng.org/pub/png/libpng.html'; githubUrl: 'https://github.com/glennrp/libpng'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install libpng.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +libpng.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install libpng.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['libpng-config', 'libpng16-config', 'png-fix-itxt', 'pngfix']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['zlib.net@1']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.6.53', '1.6.52', '1.6.51', '1.6.50', '1.6.49', '1.6.48', '1.6.47', '1.6.46', '1.6.45', '1.6.44', '1.6.43', '1.6.42', '1.6.41', '1.6.40', '1.6.39', '1.6.35']; aliases: readonly [] }; export type LibpngorgPackage = typeof libpngorgPackage