mirror of
https://github.com/mpv-player/mpv
synced 2024-12-23 15:22:09 +00:00
31780a6db5
Update the github workflows to also do meson builds for every OS. Additionally, make every workflow execute the built mpv executable (except for windows and FreeBSD's waf executable) to make sure that it runs. As an aside, FreeBSD unfortunately is a bit less elegant since it is in a VM.
46 lines
1.1 KiB
Bash
Executable File
46 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
export CFLAGS="$CFLAGS -isystem/usr/local/include"
|
|
export CXXFLAGS="$CXXFLAGS -isystem/usr/local/include"
|
|
export LDFLAGS="$LDFLAGS -L/usr/local/lib"
|
|
|
|
meson build \
|
|
-Dlibmpv=true \
|
|
-Dlua=enabled \
|
|
-Degl-drm=enabled \
|
|
-Dopenal=enabled \
|
|
-Dsdl2=enabled \
|
|
-Dvaapi-wayland=enabled \
|
|
-Dvdpau=enabled \
|
|
-Dvulkan=enabled \
|
|
-Doss-audio=enabled \
|
|
$(pkg info -q v4l_compat && echo -Ddvbin=enabled) \
|
|
$(pkg info -q libdvdnav && echo -Ddvdnav=enabled) \
|
|
$(pkg info -q libcdio-paranoia && echo -Dcdda=enabled) \
|
|
$NULL
|
|
|
|
meson compile -C build
|
|
./build/mpv
|
|
|
|
if [ ! -e "./waf" ] ; then
|
|
python3 ./bootstrap.py
|
|
fi
|
|
|
|
python3 ./waf configure \
|
|
--enable-libmpv-shared \
|
|
--enable-lua \
|
|
--enable-egl-drm \
|
|
--enable-openal \
|
|
--enable-sdl2 \
|
|
--enable-vaapi-wayland \
|
|
--enable-vdpau \
|
|
--enable-vulkan \
|
|
--enable-oss-audio \
|
|
$(pkg info -q v4l_compat && echo --enable-dvbin) \
|
|
$(pkg info -q libdvdnav && echo --enable-dvdnav) \
|
|
$(pkg info -q libcdio-paranoia && echo --enable-cdda) \
|
|
$NULL
|
|
|
|
python3 ./waf build
|