]> git.armaanb.net Git - asd-repo.git/blobdiff - mpv/build
mpv: don't bootstrap waf, and use lua 5.2
[asd-repo.git] / mpv / build
index 2985c49887db543b6b3ac656f023a5fdd957862e..299287c435e574538aabb790553c2f44e5bbb6a7 100755 (executable)
--- a/mpv/build
+++ b/mpv/build
@@ -1,14 +1,14 @@
 #!/bin/sh -e
 
-./bootstrap.py
+ln -s waf-2.0.18 waf
 
-./waf configure \
+python waf configure \
     --prefix=/usr \
     --mandir=/usr/share/man \
     --confdir=/etc/mpv \
     --enable-alsa \
     --enable-lua \
-    --lua=luajit
+               --lua=52
 
-./waf
-./waf install --destdir="$1"
+python waf build
+python waf install --destdir="$1"