2018-10-14 13:29:02 +01:00
|
|
|
#!/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 13:29:02 +01:00
|
|
|
|
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 13:29:02 +01:00
|
|
|
|
2018-10-14 19:17:16 +01:00
|
|
|
|
|
|
|
./bootstrap.py
|
|
|
|
./waf configure `cat mpv_options`
|
|
|
|
./waf -j`nproc`
|
|
|
|
sudo ./waf install
|
|
|
|
|
2018-10-14 13:29:02 +01:00
|
|
|
cd ..
|