/** * **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 github.com/AgentD/squashfs-tools-ng` * @dependencies `zlib.net^1`, `tukaani.org/xz^5`, `lz4.org^1`, ... (+2 more) * @buildDependencies `gnu.org/coreutils`, `gnu.org/libtool`, `gnu.org/gawk`, ... (+2 more) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomagentdsquashfstoolsng * 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: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/AgentD/squashfs-tools-ng'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/AgentD/squashfs-tools-ng -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/AgentD/squashfs-tools-ng'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gensquashfs', 'rdsquashfs', 'sqfs2tar', 'tar2sqfs', 'sqfsdiff']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['zlib.net^1', 'tukaani.org/xz^5', 'lz4.org^1', 'facebook.com/zstd^1', 'oberhumer.com/lzo^2']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/coreutils', 'gnu.org/libtool', 'gnu.org/gawk', 'gnu.org/gcc', 'cmake.org@^3']; /** * 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']; aliases: readonly [] }; export type SquashfstoolsngPackage = typeof squashfstoolsngPackage