UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

75 lines 2.68 kB
/** * **squashfs-tools-ng** - pkgx package * * @domain `github.com/AgentD/squashfs-tools-ng` * @programs `gensquashfs`, `rdsquashfs`, `sqfs2tar`, `tar2sqfs`, `sqfsdiff` * @version `1.3.2` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install squashfs-tools-ng` * @name `squashfs-tools-ng` * @dependencies `zlib.net^1`, `tukaani.org/xz^5`, `lz4.org^1`, ... (+2 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.squashfstoolsng * // Or access via domain * const samePkg = pantry.githubcomagentdsquashfstoolsng * console.log(pkg === samePkg) // true * console.log(pkg.name) // "squashfs-tools-ng" * console.log(pkg.programs) // ["gensquashfs", "rdsquashfs", ...] * console.log(pkg.versions[0]) // "1.3.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/AgentD/squashfs-tools-ng.md * @see https://ts-pkgx.netlify.app/usage */ export declare const squashfstoolsngPackage: { /** * The display name of this package. */ name: 'squashfs-tools-ng'; /** * The canonical domain name for this package. */ domain: 'github.com/AgentD/squashfs-tools-ng'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/AgentD/squashfs-tools-ng/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-ng'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gensquashfs', 'rdsquashfs', 'sqfs2tar', 'tar2sqfs', 'sqfsdiff']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['zlib.net^1', 'tukaani.org/xz^5', 'lz4.org^1', 'facebook.com/zstd^1', 'oberhumer.com/lzo^2']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.3.2', '1.3.1', '1.3.0', '1.2.0']; /** * 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/AgentD/squashfs-tools-ng -- $SHELL -i'; launchpadInstallCommand: 'launchpad install squashfs-tools-ng' }; export type SquashfstoolsngPackage = typeof squashfstoolsngPackage