/** * **tbb** - oneAPI Threading Building Blocks (oneTBB) * * @domain `github.com/oneapi-src/oneTBB` * @version `2022.3.0` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/oneapi-src/oneTBB` * @homepage https://uxlfoundation.github.io/oneTBB/ * @dependencies `python.org~3.11` * @buildDependencies `cmake.org`, `swig.org` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomoneapisrconetbb * console.log(pkg.name) // "tbb" * console.log(pkg.description) // "oneAPI Threading Building Blocks (oneTBB)" * console.log(pkg.versions[0]) // "2022.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/oneapi-src/oneTBB.md * @see https://ts-pkgx.netlify.app/usage */ export declare const onetbbPackage: { /** * The display name of this package. */ name: 'tbb'; /** * The canonical domain name for this package. */ domain: 'github.com/oneapi-src/oneTBB'; /** * Brief description of what this package does. */ description: 'oneAPI Threading Building Blocks (oneTBB)'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/oneapi-src/oneTBB/package.yml'; homepageUrl: 'https://uxlfoundation.github.io/oneTBB/'; githubUrl: 'https://github.com/oneapi-src/oneTBB'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/oneapi-src/oneTBB'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/oneapi-src/oneTBB -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/oneapi-src/oneTBB'; programs: readonly []; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['python.org~3.11']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org', 'swig.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2022.3.0', '2022.2.0', '2022.1.0', '2022.0.0', '2021.13.0', '2021.12.0', '2021.11.0', '2021.10.0']; aliases: readonly [] }; export type OnetbbPackage = typeof onetbbPackage