/** * **mpg123** - MP3 player for Linux and UNIX * * @domain `mpg123.de` * @programs `mpg123` * @version `1.33.3` (18 versions available) * @versions From newest version to oldest. * * @install `launchpad install mpg123.de` * @homepage https://www.mpg123.de/ * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.mpg123de * console.log(pkg.name) // "mpg123" * console.log(pkg.description) // "MP3 player for Linux and UNIX" * console.log(pkg.programs) // ["mpg123"] * console.log(pkg.versions[0]) // "1.33.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/mpg123-de.md * @see https://ts-pkgx.netlify.app/usage */ export declare const mpg123dePackage: { /** * The display name of this package. */ name: 'mpg123'; /** * The canonical domain name for this package. */ domain: 'mpg123.de'; /** * Brief description of what this package does. */ description: 'MP3 player for Linux and UNIX'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mpg123.de/package.yml'; homepageUrl: 'https://www.mpg123.de/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install mpg123.de'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +mpg123.de -- $SHELL -i'; launchpadInstallCommand: 'launchpad install mpg123.de'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mpg123']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.33.3', '1.33.2', '1.33.1', '1.33.0', '1.32.11', '1.32.10', '1.32.9', '1.32.8', '1.32.7', '1.32.6', '1.32.5', '1.32.4', '1.32.3', '1.32.2', '1.32.1', '1.32.0', '1.31.4', '1.31.2']; aliases: readonly [] }; export type Mpg123dePackage = typeof mpg123dePackage