UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

59 lines 1.92 kB
/** * **eigen.tuxfamily.org** - pkgx package * * @domain `eigen.tuxfamily.org` * @version `3.4.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install +eigen.tuxfamily.org -- $SHELL -i` * @dependencies `linux:gnu.org/gcc/libstdcxx@14` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.eigentuxfamilyorg * console.log(pkg.name) // "eigen.tuxfamily.org" * console.log(pkg.versions[0]) // "3.4.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/eigen-tuxfamily-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const eigentuxfamilyorgPackage: { /** * The display name of this package. */ name: 'eigen.tuxfamily.org'; /** * The canonical domain name for this package. */ domain: 'eigen.tuxfamily.org'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/eigen.tuxfamily.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 +eigen.tuxfamily.org -- $SHELL -i'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['linux:gnu.org/gcc/libstdcxx@14']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.4.0']; aliases: readonly [] }; export type EigentuxfamilyorgPackage = typeof eigentuxfamilyorgPackage