summaryrefslogtreecommitdiffstats
path: root/scripts/mpv-config
blob: b23cf4d48fdb0fd7057d7d8ce314953996332e40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
set -e

BUILD="$(pwd)"

USER_OPTS="$@"
if test -f "$BUILD"/mpv_options ; then
    USER_OPTS="$(cat "$BUILD"/mpv_options) $USER_OPTS"
fi
OPTIONS="$USER_OPTS"

echo Using mpv options: $OPTIONS

cd "$BUILD"/mpv
PKG_CONFIG_PATH="$BUILD"/build_libs/lib/pkgconfig ./waf configure $OPTIONS