/** * **flac** - Free Lossless Audio Codec * * @domain `xiph.org/flac` * @programs `flac` * @version `1.5.0` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install xiph.org/flac` * @homepage https://xiph.org/flac/ * @dependencies `xiph.org/ogg^1.3.5` * @buildDependencies `gnu.org/libtool@^2.4`, `gnu.org/automake@^1.16`, `gnu.org/autoconf@^2.71` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.xiphorgflac * console.log(pkg.name) // "flac" * console.log(pkg.description) // "Free Lossless Audio Codec" * console.log(pkg.programs) // ["flac"] * console.log(pkg.versions[0]) // "1.5.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/xiph-org/flac.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xiphorgflacPackage: { /** * The display name of this package. */ name: 'flac'; /** * The canonical domain name for this package. */ domain: 'xiph.org/flac'; /** * Brief description of what this package does. */ description: 'Free Lossless Audio Codec'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/xiph.org/flac/package.yml'; homepageUrl: 'https://xiph.org/flac/'; githubUrl: 'https://github.com/xiph/flac'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install xiph.org/flac'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +xiph.org/flac -- $SHELL -i'; launchpadInstallCommand: 'launchpad install xiph.org/flac'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['flac']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['xiph.org/ogg^1.3.5']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/libtool@^2.4', 'gnu.org/automake@^1.16', 'gnu.org/autoconf@^2.71']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.5.0', '1.4.3', '1.4.2']; aliases: readonly [] }; export type XiphorgflacPackage = typeof xiphorgflacPackage