#!/bin/sh
set -e

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