mirror of
https://github.com/mpv-player/mpv
synced 2025-02-06 23:21:54 +00:00
Remove waf entirely in favor of meson as the only supported build system. Waf was officially deprecated in 0.36.0, and has not been preferred over meson since 0.35.0.
23 lines
606 B
Bash
Executable File
23 lines
606 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
FFMPEG_SYSROOT="${HOME}/deps/sysroot"
|
|
MPV_INSTALL_PREFIX="${HOME}/out/mpv"
|
|
MPV_VARIANT="${TRAVIS_OS_NAME}"
|
|
|
|
if [[ -d "./build/${MPV_VARIANT}" ]] ; then
|
|
rm -rf "./build/${MPV_VARIANT}"
|
|
fi
|
|
|
|
PKG_CONFIG_PATH="${FFMPEG_SYSROOT}/lib/pkgconfig/" CC="${CC}" CXX="${CXX}" \
|
|
meson setup build \
|
|
-Dprefix="${MPV_INSTALL_PREFIX}" \
|
|
-D{libmpv,tests}=true \
|
|
-D{gl,iconv,lcms2,lua,jpeg,plain-gl,zlib}=enabled \
|
|
-D{cocoa,coreaudio,gl-cocoa,macos-cocoa-cb,macos-touchbar,videotoolbox-gl}=enabled
|
|
|
|
meson compile -C build -j4
|
|
meson install -C build
|
|
./build/mpv -v --no-config
|