2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-07 08:22:28 +00:00
repo/extra/mpv/build
2021-08-22 18:37:53 +03:00

36 lines
668 B
Bash
Executable File

#!/bin/sh -e
ln -s waf-2.0.18 waf
# Setup docutils to generate manual pages.
{
cd docutils
python3 setup.py build
python3 setup.py install \
--root="$PWD/../dist"
cd ../dist/usr/lib/python*/site-packages
PYTHONPATH=$PWD:$(python -c "import sys;print(':'.join(sys.path))")
cd -; cd ..
export PATH=$PWD/dist/usr/bin:$PATH
export PYTHONPATH
}
python waf configure \
--prefix=/usr \
--mandir=/usr/share/man \
--confdir=/etc/mpv \
--enable-alsa \
--enable-wayland \
--disable-x11
python waf build
python waf install --destdir="$1"
rm -rf \
"$1/usr/share/zsh" \
"$1/usr/share/bash-completion"