aboutsummaryrefslogtreecommitdiff
path: root/extra/mpv/build
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2021-07-17 23:42:58 +0300
committerCem Keylan <cem@ckyln.com>2021-07-17 23:42:58 +0300
commita3894e5b7bfd3a24a65124f9d8cccc558c56dac9 (patch)
treed0264d99404896508a284cb3c15f0e5c705cb803 /extra/mpv/build
parent45bad23159b1ee46c815b389da3db1859351f68d (diff)
downloadrepository-a3894e5b7bfd3a24a65124f9d8cccc558c56dac9.tar.gz
mpv: disable libarchive, use waf from source
Diffstat (limited to 'extra/mpv/build')
-rwxr-xr-xextra/mpv/build11
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"