/** * **lapack** - LAPACK development repository * * @domain `netlib.org/lapack` * @version `3.12.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install netlib.org/lapack` * @dependencies `gnu.org/gcc^11 # libgfortran` * @buildDependencies `gnu.org/binutils`, `cmake.org@~3.24` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.netliborglapack * console.log(pkg.name) // "lapack" * console.log(pkg.description) // "LAPACK development repository" * console.log(pkg.versions[0]) // "3.12.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/netlib-org/lapack.md * @see https://ts-pkgx.netlify.app/usage */ export declare const netliborglapackPackage: { /** * The display name of this package. */ name: 'lapack'; /** * The canonical domain name for this package. */ domain: 'netlib.org/lapack'; /** * Brief description of what this package does. */ description: 'LAPACK development repository'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/netlib.org/lapack/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/Reference-LAPACK/lapack'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install netlib.org/lapack'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +netlib.org/lapack -- $SHELL -i'; launchpadInstallCommand: 'launchpad install netlib.org/lapack'; programs: readonly []; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['gnu.org/gcc^11 # libgfortran']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/binutils', 'cmake.org@~3.24']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.12.1', '3.12.0', '3.11.0']; aliases: readonly [] }; export type NetliborglapackPackage = typeof netliborglapackPackage