From: Armaan Bhojwani Date: Wed, 30 Jun 2021 14:35:39 +0000 (-0400) Subject: mpv: don't bootstrap waf, and use lua 5.2 X-Git-Tag: 2021.07.15-1~88 X-Git-Url: https://git.armaanb.net/?p=asd-repo.git;a=commitdiff_plain;h=7e9a8cb4de60bdde21f26ea95d9a6f33e2153349 mpv: don't bootstrap waf, and use lua 5.2 --- diff --git a/mpv/build b/mpv/build index 2985c49..299287c 100755 --- 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" diff --git a/mpv/checksums b/mpv/checksums index 773e232..ba4d1cf 100644 --- a/mpv/checksums +++ b/mpv/checksums @@ -1 +1,2 @@ 100a116b9f23bdcda3a596e9f26be3a69f166a4f1d00910d1789b6571c46f3a9 +2e0cf83a63843da127610420cef1d3126f1187d8e572b6b3a28052fc2250d4bf diff --git a/mpv/depends b/mpv/depends index 6642a50..9d96ea4 100644 --- a/mpv/depends +++ b/mpv/depends @@ -1,11 +1,11 @@ alsa-lib ffmpeg freetype-harfbuzz -libass libXScrnSaver libXinerama libXrandr -luajit +libass +lua mesa pkgconf make python make diff --git a/mpv/sources b/mpv/sources index ff4fbfa..0c3bd28 100644 --- a/mpv/sources +++ b/mpv/sources @@ -1 +1,2 @@ https://github.com/mpv-player/mpv/archive/v0.33.1.tar.gz +https://waf.io/waf-2.0.18