diff options
Diffstat (limited to 'ci/build-freebsd.sh')
-rwxr-xr-x | ci/build-freebsd.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/ci/build-freebsd.sh b/ci/build-freebsd.sh new file mode 100755 index 0000000..bc68a25 --- /dev/null +++ b/ci/build-freebsd.sh @@ -0,0 +1,29 @@ +#!/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 setup build \ + --werror \ + -Dlibplacebo:werror=false \ + -Dc_args="-Wno-error=deprecated -Wno-error=deprecated-declarations" \ + -Diconv=disabled \ + -Dlibmpv=true \ + -Dlua=enabled \ + -Degl-drm=enabled \ + -Dopenal=enabled \ + -Dsndio=enabled \ + -Dtests=true \ + -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) \ + $(pkg info -q pipewire && echo -Dpipewire=enabled) \ + $NULL + +meson compile -C build +./build/mpv -v --no-config |