/** * **openblas** - OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version. * * @domain `openblas.net` * @version `0.3.30` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install openblas.net` * @homepage http://www.openblas.net * @buildDependencies `cmake.org` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.openblasnet * console.log(pkg.name) // "openblas" * console.log(pkg.description) // "OpenBLAS is an optimized BLAS library based on ..." * console.log(pkg.versions[0]) // "0.3.30" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/openblas-net.md * @see https://ts-pkgx.netlify.app/usage */ export declare const openblasnetPackage: { /** * The display name of this package. */ name: 'openblas'; /** * The canonical domain name for this package. */ domain: 'openblas.net'; /** * Brief description of what this package does. */ description: 'OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version. '; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/openblas.net/package.yml'; homepageUrl: 'http://www.openblas.net'; githubUrl: 'https://github.com/xianyi/OpenBLAS'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install openblas.net'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +openblas.net -- $SHELL -i'; launchpadInstallCommand: 'launchpad install openblas.net'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.3.30', '0.3.29', '0.3.28', '0.3.27', '0.3.26', '0.3.25', '0.3.24', '0.3.23']; aliases: readonly [] }; export type OpenblasnetPackage = typeof openblasnetPackage