UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 2.48 kB
/** * **libarchive.org** - Multi-format archive and compression library * * @domain `libarchive.org` * @programs `bsdcat`, `bsdcpio`, `bsdtar` * @version `3.8.1` (13 versions available) * @versions From newest version to oldest. * * @install `launchpad install libarchive.org` * @dependencies `gnu.org/coreutils`, `lz4.org@1`, `tukaani.org/xz@5`, ... (+4 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.libarchiveorg * console.log(pkg.name) // "libarchive.org" * console.log(pkg.description) // "Multi-format archive and compression library" * console.log(pkg.programs) // ["bsdcat", "bsdcpio", ...] * console.log(pkg.versions[0]) // "3.8.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/libarchive-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const libarchiveorgPackage: { /** * The display name of this package. */ name: 'libarchive.org'; /** * The canonical domain name for this package. */ domain: 'libarchive.org'; /** * Brief description of what this package does. */ description: 'Multi-format archive and compression library'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libarchive.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 libarchive.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['bsdcat', 'bsdcpio', 'bsdtar']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gnu.org/coreutils', 'lz4.org@1', 'tukaani.org/xz@5', 'facebook.com/zstd@1', 'sourceware.org/bzip2@1', 'libexpat.github.io@2', 'zlib.net@1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.8.1', '3.8.0', '3.7.9', '3.7.8', '3.7.7', '3.7.6', '3.7.5', '3.7.4', '3.7.3', '3.7.2', '3.7.1', '3.7.0', '3.6.2']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +libarchive.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install libarchive.org' }; export type LibarchiveorgPackage = typeof libarchiveorgPackage