0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-19 19:42:24 +02:00

DOCS/compile-windows.md: fix MSYS2 packages

Attempting to install `git` on the `pacboy` line fails with
`error: target not found: mingw-w64-clang-x86_64-git`
so move that to another spot.

`video_mp_image_pool.c` fails to build due to libavutil right now
because of missing vulkan headers so install those with `pacboy`.
(also improved in https://github.com/mpv-player/mpv/pull/14610 )

Simplify package lists since pacboy doesn't require `:p` anymore.
This commit is contained in:
rtldg 2024-07-29 13:08:58 +00:00 committed by Kacper Michajłow
parent a36f8ad162
commit 05b964fdec

View File

@ -212,15 +212,15 @@ For guidance on updating MSYS2, please refer to the official documentation:
### Installing mpv Dependencies
``` bash
# Install pacboy
pacman -S pactoys
# Install pacboy and git
pacman -S pactoys git
# Install MSYS2 build dependencies and a MinGW-w64 compiler
pacboy -S git {python,pkgconf,cc,meson}:p
pacboy -S python pkgconf cc meson
# Install key dependencies. libass and lcms2 are also included as dependencies
# of ffmpeg.
pacboy -S {ffmpeg,libjpeg-turbo,libplacebo,luajit}:p
pacboy -S ffmpeg libjpeg-turbo libplacebo luajit vulkan-headers
```
### Building mpv