#!/bin/sh
set -e

cd mpv
if [ "$BUILDSYSTEM" = "meson" ]; then
    meson compile -C build "$@"
else
    python3 ./waf build "$@"
fi
