UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 3.06 kB
/** * **suite-sparse** - The official SuiteSparse library: a suite of sparse matrix algorithms authored or co-authored by Tim Davis, Texas A&M University. * * @domain `people.engr.tamu.edu/davis/suitesparse` * @programs `mongoose`, `suitesparse_mongoose` * @version `7.10.3` (20 versions available) * @versions From newest version to oldest. * * @install `launchpad install +people.engr.tamu.edu/davis/suitesparse -- $SHELL -i` * @aliases `suite-sparse` * @dependencies `glaros.dtc.umn.edu/metis`, `gnu.org/m4`, `netlib.org/lapack`, ... (+4 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.suitesparse * // Or access via domain * const samePkg = pantry.peopleengrtamuedudavissuitesparse * console.log(pkg === samePkg) // true * console.log(pkg.name) // "suitesparse" * console.log(pkg.description) // "The official SuiteSparse library: a suite of sp..." * console.log(pkg.programs) // ["mongoose", "suitesparse_mongoose"] * console.log(pkg.versions[0]) // "7.10.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/people-engr-tamu-edu/davis/suitesparse.md * @see https://ts-pkgx.netlify.app/usage */ export declare const suitesparsePackage: { /** * The display name of this package. */ name: 'suitesparse'; /** * The canonical domain name for this package. */ domain: 'people.engr.tamu.edu/davis/suitesparse'; /** * Brief description of what this package does. */ description: 'The official SuiteSparse library: a suite of sparse matrix algorithms authored or co-authored by Tim Davis, Texas A&M University.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/people.engr.tamu.edu/davis/suitesparse/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +people.engr.tamu.edu/davis/suitesparse -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mongoose', 'suitesparse_mongoose']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['glaros.dtc.umn.edu/metis', 'gnu.org/m4', 'netlib.org/lapack', 'gnu.org/gmp', 'openmp.llvm.org', 'gnu.org/mpfr', 'gnu.org/gcc']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['7.10.3', '7.10.2', '7.10.1', '7.10.0', '7.9.0', '7.8.3', '7.8.2', '7.8.1', '7.8.0', '7.7.0', '7.6.1', '7.6.0', '7.5.1', '7.5.0', '7.4.0', '7.3.1', '7.3.0', '7.2.2', '7.2.1', '7.2.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['suite-sparse'] }; export type SuitesparsePackage = typeof suitesparsePackage