/** * **mpv** - Media player based on MPlayer and mplayer2 * * @domain `mpv.io` * @programs `mpv` * @version `0.40.0` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install mpv.io` * @homepage https://mpv.io * @dependencies `ffmpeg.org`, `libjpeg-turbo.org@2`, `libarchive.org@3`, ... (+10 more) (includes OS-specific dependencies with `os:package` format) * @buildDependencies `mesonbuild.com@1`, `linux:nixos.org/patchelf@0` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.mpvio * console.log(pkg.name) // "mpv" * console.log(pkg.description) // "Media player based on MPlayer and mplayer2" * console.log(pkg.programs) // ["mpv"] * console.log(pkg.versions[0]) // "0.40.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/mpv-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const mpvioPackage: { /** * The display name of this package. */ name: 'mpv'; /** * The canonical domain name for this package. */ domain: 'mpv.io'; /** * Brief description of what this package does. */ description: 'Media player based on MPlayer and mplayer2'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mpv.io/package.yml'; homepageUrl: 'https://mpv.io'; githubUrl: 'https://github.com/mpv-player/mpv'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install mpv.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +mpv.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install mpv.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mpv']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['ffmpeg.org', 'libjpeg-turbo.org@2', 'libarchive.org@3', 'github.com/libass/libass^0.17', 'videolan.org/libplacebo@6', 'littlecms.com@2', 'luajit.org@2', 'mujs.com@1', 'freedesktop.org/uchardet@0', 'vapoursynth.com@66', 'yt-dlp.org', 'linux:alsa-project.org/alsa-lib@1', 'linux:github.com/adah1972/libunibreak@6']; /** * 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 ['mesonbuild.com@1', 'linux:nixos.org/patchelf@0']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.40.0', '0.39.0', '0.38.0']; aliases: readonly [] }; export type MpvioPackage = typeof mpvioPackage