/** * **aac-enc** - Standalone library of the Fraunhofer FDK AAC code from Android * * @domain `sourceforge.net/opencore-amr` * @programs `aac-enc` * @version `2.0.3` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install sourceforge.net/opencore-amr` * @homepage https://sourceforge.net/projects/opencore-amr/ * @buildDependencies `linux:gnu.org/gcc` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.sourceforgenetopencoreamr * console.log(pkg.name) // "aac-enc" * console.log(pkg.description) // "Standalone library of the Fraunhofer FDK AAC co..." * console.log(pkg.programs) // ["aac-enc"] * console.log(pkg.versions[0]) // "2.0.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/sourceforge-net/opencore-amr.md * @see https://ts-pkgx.netlify.app/usage */ export declare const sourceforgenetopencoreamrPackage: { /** * The display name of this package. */ name: 'aac-enc'; /** * The canonical domain name for this package. */ domain: 'sourceforge.net/opencore-amr'; /** * Brief description of what this package does. */ description: 'Standalone library of the Fraunhofer FDK AAC code from Android'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sourceforge.net/opencore-amr/package.yml'; homepageUrl: 'https://sourceforge.net/projects/opencore-amr/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install sourceforge.net/opencore-amr'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +sourceforge.net/opencore-amr -- $SHELL -i'; launchpadInstallCommand: 'launchpad install sourceforge.net/opencore-amr'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['aac-enc']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:gnu.org/gcc`). */ buildDependencies: readonly ['linux:gnu.org/gcc']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.0.3', '2.0.2']; aliases: readonly [] }; export type SourceforgenetopencoreamrPackage = typeof sourceforgenetopencoreamrPackage