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