UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.44 kB
/** * **fftw** - C routines to compute the Discrete Fourier Transform * * @domain `fftw.org` * @programs `fftw-wisdom`, `fftw-wisdom-to-conf`, `fftwf-wisdom`, `fftwl-wisdom` * @version `3.3.10` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install fftw` * @name `fftw` * @dependencies `open-mpi.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.fftw * // Or access via domain * const samePkg = pantry.fftworg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "fftw" * console.log(pkg.description) // "C routines to compute the Discrete Fourier Tran..." * console.log(pkg.programs) // ["fftw-wisdom", "fftw-wisdom-to-conf", ...] * console.log(pkg.versions[0]) // "3.3.10" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/fftw-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const fftwPackage: { /** * The display name of this package. */ name: 'fftw'; /** * The canonical domain name for this package. */ domain: 'fftw.org'; /** * Brief description of what this package does. */ description: 'C routines to compute the Discrete Fourier Transform'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/fftw.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 fftw'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['fftw-wisdom', 'fftw-wisdom-to-conf', 'fftwf-wisdom', 'fftwl-wisdom']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['open-mpi.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.3.10']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +fftw.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install fftw' }; export type FftwPackage = typeof fftwPackage