UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.79 kB
/** * **SquashFS-Tools** - tools to create and extract Squashfs filesystems * * @domain `github.com/plougher/squashfs-tools` * @programs `mksquashfs`, `unsquashfs`, `sqfscat`, `sqfstar` * @version `4.7.2` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install SquashFS-Tools` * @name `SquashFS-Tools` * @dependencies `lz4.org@1`, `oberhumer.com/lzo@2`, `tukaani.org/xz@5`, ... (+2 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.SquashFSTools * // Or access via domain * const samePkg = pantry.githubcomploughersquashfstools * console.log(pkg === samePkg) // true * console.log(pkg.name) // "SquashFS-Tools" * console.log(pkg.description) // "tools to create and extract Squashfs filesystems" * console.log(pkg.programs) // ["mksquashfs", "unsquashfs", ...] * console.log(pkg.versions[0]) // "4.7.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/plougher/squashfs-tools.md * @see https://ts-pkgx.netlify.app/usage */ export declare const squashFSToolsPackage: { /** * The display name of this package. */ name: 'SquashFS-Tools'; /** * The canonical domain name for this package. */ domain: 'github.com/plougher/squashfs-tools'; /** * Brief description of what this package does. */ description: 'tools to create and extract Squashfs filesystems'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/plougher/squashfs-tools/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install SquashFS-Tools'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mksquashfs', 'unsquashfs', 'sqfscat', 'sqfstar']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['lz4.org@1', 'oberhumer.com/lzo@2', 'tukaani.org/xz@5', 'facebook.com/zstd@1', 'zlib.net@1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.7.2', '4.7.1', '4.7.0', '4.6.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/plougher/squashfs-tools -- $SHELL -i'; launchpadInstallCommand: 'launchpad install SquashFS-Tools' }; export type SquashFSToolsPackage = typeof squashFSToolsPackage