/** * **ladspa** - Linux Audio Developer's Simple Plugin * * @domain `ladspa.org` * @programs `analyseplugin`, `applyplugin`, `listplugins` * @version `1.17.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install ladspa.org` * @homepage https://www.ladspa.org * @dependencies `github.com/libsndfile/libsndfile^1.2` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.ladspaorg * console.log(pkg.name) // "ladspa" * console.log(pkg.description) // "Linux Audio Developer's Simple Plugin" * console.log(pkg.programs) // ["analyseplugin", "applyplugin", ...] * console.log(pkg.versions[0]) // "1.17.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/ladspa-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const ladspaorgPackage: { /** * The display name of this package. */ name: 'ladspa'; /** * The canonical domain name for this package. */ domain: 'ladspa.org'; /** * Brief description of what this package does. */ description: 'Linux Audio Developer\'s Simple Plugin'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/ladspa.org/package.yml'; homepageUrl: 'https://www.ladspa.org'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install ladspa.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +ladspa.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install ladspa.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['analyseplugin', 'applyplugin', 'listplugins']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['github.com/libsndfile/libsndfile^1.2']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.17.0']; aliases: readonly [] }; export type LadspaorgPackage = typeof ladspaorgPackage