1
0
Fork 0
VideoPlayer/scripts/build-mpv.sh

18 lines
552 B
Bash
Raw Normal View History

#!/bin/bash
2018-10-14 19:17:16 +01:00
#git clone --depth 1 https://github.com/mpv-player/mpv-build
#cd mpv-build
export PATH="/usr/lib/ccache:$PATH"
git clone --depth 1 https://github.com/mpv-player/mpv
cd mpv
2018-10-14 14:36:56 +01:00
echo --enable-libmpv-shared --prefix=/usr >> mpv_options
echo --disable-caca --disable-wayland --disable-gl-wayland --disable-libarchive --disable-zlib --disable-tv --disable-debug-build --disable-manpage-build --disable-vapoursynth --disable-libsmbclient >> mpv_options
2018-10-14 19:17:16 +01:00
./bootstrap.py
./waf configure `cat mpv_options`
./waf -j`nproc`
sudo ./waf install
cd ..