repo/extra/mpv/build
2021-07-08 12:25:54 +03:00

15 lines
247 B
Bash
Executable File

#!/bin/sh -e
ln -s waf-2.0.18 waf
python waf configure \
--prefix=/usr \
--mandir=/usr/share/man \
--confdir=/etc/mpv \
--enable-alsa \
--enable-wayland \
--disable-x11
python waf build
python waf install --destdir="$1"