diff options
Diffstat (limited to 'extra/mpv/build')
-rwxr-xr-x | extra/mpv/build | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/extra/mpv/build b/extra/mpv/build index c7307dc8..d34cc813 100755 --- a/extra/mpv/build +++ b/extra/mpv/build @@ -1,12 +1,11 @@ #!/bin/sh -e -ln -s waf-2.0.18 waf - -python waf configure \ +python waf/waf-light configure \ --prefix=/usr \ --mandir=/usr/share/man \ --confdir=/etc/mpv \ - --enable-alsa + --enable-alsa \ + --disable-libarchive -python waf build -python waf install --destdir="$1" +python waf/waf-light build +python waf/waf-light install --destdir="$1" |