summaryrefslogtreecommitdiffstats
path: root/scripts/mpv-install
blob: ad337bc70658cd9b1bfa0d13c70626b5582c1bb4 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e

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