2019-08-04 15:07:28 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2019-10-14 14:06:07 -06:00
|
|
|
ln -s waf-2.0.18 waf
|
|
|
|
|
2019-08-04 15:07:28 -06:00
|
|
|
python waf configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--mandir=/usr/share/man \
|
|
|
|
--confdir=/etc/mpv \
|
2021-07-08 03:25:54 -06:00
|
|
|
--enable-alsa \
|
|
|
|
--enable-wayland \
|
|
|
|
--disable-x11
|
2019-08-04 15:07:28 -06:00
|
|
|
|
|
|
|
python waf build
|
|
|
|
python waf install --destdir="$1"
|
2021-07-11 19:02:05 -06:00
|
|
|
|
|
|
|
rm -rf \
|
|
|
|
"$1/usr/share/zsh" \
|
|
|
|
"$1/usr/share/bash-completion"
|