diff options
author | Cem Keylan <cem@ckyln.com> | 2021-07-17 23:42:58 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-07-17 23:42:58 +0300 |
commit | a3894e5b7bfd3a24a65124f9d8cccc558c56dac9 (patch) | |
tree | d0264d99404896508a284cb3c15f0e5c705cb803 /extra/mpv/build | |
parent | 45bad23159b1ee46c815b389da3db1859351f68d (diff) | |
download | repository-a3894e5b7bfd3a24a65124f9d8cccc558c56dac9.tar.gz |
mpv: disable libarchive, use waf from source
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" |