#!/bin/sh
set -e

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