/** * **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.org` * @homepage https://fftw.org * @dependencies `open-mpi.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.fftworg * 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 fftworgPackage: { /** * 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: 'https://fftw.org'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install fftw.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +fftw.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install fftw.org'; /** * 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 []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['open-mpi.org']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.3.10']; aliases: readonly [] }; export type FftworgPackage = typeof fftworgPackage