mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 19:50:13 -07:00
14 lines
255 B
Bash
Executable File
14 lines
255 B
Bash
Executable File
#!/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
|
|
|
|
python waf build
|
|
python waf install --destdir="$1"
|