#!/bin/sh
set -e

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