ts-pkgx
Version:
A library & CLI for managing packages
70 lines • 2.65 kB
TypeScript
/**
* **open-mpi.org** - Open MPI main development repository
*
* @domain `open-mpi.org`
* @programs `mpic++`, `mpiCC`, `mpicc`, `mpicxx`, `mpiexec`, ... (+6 more)
* @version `5.0.8` (11 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +open-mpi.org -- $SHELL -i`
* @dependencies `open-mpi.org/hwloc`, `openpmix.github.io@5`, `libevent.org`
* @companions `OMPI_F77FLAGS^$FCFLAGS -I{{prefix}}/include`, `OMPI_F90FLAGS^$FCFLAGS -I{{prefix}}/include`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.openmpiorg
* console.log(pkg.name) // "open-mpi.org"
* console.log(pkg.description) // "Open MPI main development repository"
* console.log(pkg.programs) // ["mpic++", "mpiCC", ...]
* console.log(pkg.versions[0]) // "5.0.8" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/open-mpi-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const openmpiorgPackage: {
/**
* The display name of this package.
*/
name: 'open-mpi.org';
/**
* The canonical domain name for this package.
*/
domain: 'open-mpi.org';
/**
* Brief description of what this package does.
*/
description: 'Open MPI main development repository';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/open-mpi.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 +open-mpi.org -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['mpic++', 'mpiCC', 'mpicc', 'mpicxx', 'mpiexec', 'mpif77', 'mpif90', 'mpifort', 'mpirun', 'ompi_info', 'opal_wrapper'];
/**
* Related packages that work well with this package.
* Consider installing these for enhanced functionality.
*/
companions: readonly ['OMPI_F77FLAGS^$FCFLAGS -I{{prefix}}/include', 'OMPI_F90FLAGS^$FCFLAGS -I{{prefix}}/include'];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['open-mpi.org/hwloc', 'openpmix.github.io@5', 'libevent.org'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['5.0.8', '5.0.7', '5.0.6', '5.0.5', '5.0.4', '5.0.3', '5.0.2', '5.0.1', '4.1.8', '4.1.7', '4.1.5'];
aliases: readonly []
};
export type OpenmpiorgPackage = typeof openmpiorgPackage