mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-17 04:00:14 -07:00
15 lines
279 B
Plaintext
15 lines
279 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
python ./bootstrap.py
|
||
|
python waf configure \
|
||
|
--prefix=/usr \
|
||
|
--mandir=/usr/share/man \
|
||
|
--confdir=/etc/mpv \
|
||
|
--enable-alsa \
|
||
|
--enable-libass \
|
||
|
--enable-libmpv-shared \
|
||
|
--enable-uchardet
|
||
|
|
||
|
python waf build
|
||
|
python waf install --destdir="$1"
|