UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

77 lines 2.5 kB
/** * **matdump** - C library for reading and writing MATLAB MAT files * * @domain `matio.sourceforge.io` * @programs `matdump` * @version `1.5.28` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install matdump` * @name `libmatio` * @aliases `matdump` * @dependencies `hdfgroup.org/HDF5`, `zlib.net` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.matdump * // Or access via domain * const samePkg = pantry.matiosourceforgeio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "libmatio" * console.log(pkg.description) // "C library for reading and writing MATLAB MAT files" * console.log(pkg.programs) // ["matdump"] * console.log(pkg.versions[0]) // "1.5.28" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/matio-sourceforge-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const matdumpPackage: { /** * The display name of this package. */ name: 'libmatio'; /** * The canonical domain name for this package. */ domain: 'matio.sourceforge.io'; /** * Brief description of what this package does. */ description: 'C library for reading and writing MATLAB MAT files'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/matio.sourceforge.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install matdump'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['matdump']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['hdfgroup.org/HDF5', 'zlib.net']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.5.28', '1.5.27', '1.5.26', '1.5.25', '1.5.24', '1.5.23']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['matdump']; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) matdump -- $SHELL -i'; launchpadInstallCommand: 'launchpad install matdump' }; export type MatdumpPackage = typeof matdumpPackage