repo/extra/mpv/build

19 lines
317 B
Plaintext
Raw Normal View History

2019-08-04 21:07:28 +00:00
#!/bin/sh -e
ln -s waf-2.0.18 waf
2019-08-04 21:07:28 +00:00
python waf configure \
--prefix=/usr \
--mandir=/usr/share/man \
--confdir=/etc/mpv \
2021-07-08 09:25:54 +00:00
--enable-alsa \
--enable-wayland \
--disable-x11
2019-08-04 21:07:28 +00:00
python waf build
python waf install --destdir="$1"
2021-07-12 01:02:05 +00:00
rm -rf \
"$1/usr/share/zsh" \
"$1/usr/share/bash-completion"