/** * **apptainer** - Application container and unprivileged sandbox platform for Linux * * @domain `apptainer.org` * @programs `apptainer`, `run-singularity`, `singularity` * @version `1.4.5` (10 versions available) * @versions From newest version to oldest. * * @install `launchpad install apptainer.org` * @homepage https://apptainer.org/ * @dependencies `github.com/seccomp/libseccomp@2`, `curl.se/ca-certs` * @buildDependencies `go.dev@~1.21`, `linux:gnu.org/gcc`, `linux:gnu.org/binutils@~2.44` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.apptainerorg * console.log(pkg.name) // "apptainer" * console.log(pkg.description) // "Application container and unprivileged sandbox ..." * console.log(pkg.programs) // ["apptainer", "run-singularity", ...] * console.log(pkg.versions[0]) // "1.4.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/apptainer-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const apptainerorgPackage: { /** * The display name of this package. */ name: 'apptainer'; /** * The canonical domain name for this package. */ domain: 'apptainer.org'; /** * Brief description of what this package does. */ description: 'Application container and unprivileged sandbox platform for Linux'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/apptainer.org/package.yml'; homepageUrl: 'https://apptainer.org/'; githubUrl: 'https://github.com/apptainer/apptainer'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install apptainer.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +apptainer.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install apptainer.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['apptainer', 'run-singularity', 'singularity']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['github.com/seccomp/libseccomp@2', 'curl.se/ca-certs']; /** * Build dependencies for this package. * These are only required when building the package from source. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:gnu.org/gcc`). */ buildDependencies: readonly ['go.dev@~1.21', 'linux:gnu.org/gcc', 'linux:gnu.org/binutils@~2.44']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.4.5', '1.4.4', '1.4.3', '1.4.2', '1.4.1', '1.4.0', '1.3.6', '1.3.5', '1.3.4', '1.3.3']; aliases: readonly [] }; export type ApptainerorgPackage = typeof apptainerorgPackage