13 lines
204 B
Bash
Executable File
13 lines
204 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
|
|
|
|
python waf build
|
|
python waf install --destdir="$1"
|