blob: c7307dc8126185a51ab7c39fc3abf3ef084b405e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh -e
ln -s waf-2.0.18 waf
python waf configure \
--prefix=/usr \
--mandir=/usr/share/man \
--confdir=/etc/mpv \
--enable-alsa
python waf build
python waf install --destdir="$1"
|