ts-pkgx
Version:
A library & CLI for managing packages
61 lines • 2 kB
TypeScript
/**
* **netlib.org/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`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.netliborglapack
* console.log(pkg.name) // "netlib.org/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: 'netlib.org/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/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install netlib.org/lapack';
programs: readonly [];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['gnu.org/gcc^11 # libgfortran'];
/**
* 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 [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +netlib.org/lapack -- $SHELL -i';
launchpadInstallCommand: 'launchpad install netlib.org/lapack'
};
export type NetliborglapackPackage = typeof netliborglapackPackage