/** * **speexdec** - Audio codec designed for speech * * @domain `speex.org` * @programs `speexdec` * @version `1.2.1` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install speex.org` * @homepage https://speex.org/ * @dependencies `xiph.org/ogg` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.speexorg * console.log(pkg.name) // "speexdec" * console.log(pkg.description) // "Audio codec designed for speech" * console.log(pkg.programs) // ["speexdec"] * console.log(pkg.versions[0]) // "1.2.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/speex-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const speexorgPackage: { /** * The display name of this package. */ name: 'speexdec'; /** * The canonical domain name for this package. */ domain: 'speex.org'; /** * Brief description of what this package does. */ description: 'Audio codec designed for speech'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/speex.org/package.yml'; homepageUrl: 'https://speex.org/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install speex.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +speex.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install speex.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['speexdec']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['xiph.org/ogg']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.2.1']; aliases: readonly [] }; export type SpeexorgPackage = typeof speexorgPackage