repo/extra/mpv/build

14 lines
Plaintext
Raw Normal View History

2019-08-04 15:07:28 -06:00
#!/bin/sh -e
python ./bootstrap.py
python waf configure \
--prefix=/usr \
--mandir=/usr/share/man \
--confdir=/etc/mpv \
--enable-alsa \
--enable-libass \
2019-08-04 23:33:30 -06:00
--enable-libmpv-shared
2019-08-04 15:07:28 -06:00
python waf build
python waf install --destdir="$1"