UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

77 lines 2.83 kB
/** * **zipcmp** - A C library for reading, creating, and modifying zip archives. * * @domain `libzip.org` * @programs `zipcmp`, `zipmerge`, `ziptool` * @version `1.11.4` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install zipcmp` * @name `zipcmp` * @dependencies `facebook.com/zstd>=1.5.0`, `darwin:sourceware.org/bzip2>=1.0.8`, `darwin:tukaani.org/xz>=5.2.7`, ... (+2 more) (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.zipcmp * // Or access via domain * const samePkg = pantry.libziporg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "zipcmp" * console.log(pkg.description) // "A C library for reading, creating, and modifyin..." * console.log(pkg.programs) // ["zipcmp", "zipmerge", ...] * console.log(pkg.versions[0]) // "1.11.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/libzip-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const zipcmpPackage: { /** * The display name of this package. */ name: 'zipcmp'; /** * The canonical domain name for this package. */ domain: 'libzip.org'; /** * Brief description of what this package does. */ description: 'A C library for reading, creating, and modifying zip archives.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libzip.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 zipcmp'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['zipcmp', 'zipmerge', 'ziptool']; 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 ['facebook.com/zstd>=1.5.0', 'darwin:sourceware.org/bzip2>=1.0.8', 'darwin:tukaani.org/xz>=5.2.7', 'darwin:zlib.net>=1.2.13', 'linux:openssl.org^1.1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.11.4', '1.11.3', '1.11.2', '1.11.1', '1.10.1', '1.10.0', '1.9.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +libzip.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install zipcmp' }; export type ZipcmpPackage = typeof zipcmpPackage