#!/bin/sh
set -e

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