2018-10-14 13:29:02 +01:00
|
|
|
#!/bin/bash
|
2018-10-17 08:30:33 +01:00
|
|
|
set -x
|
2018-10-14 21:50:14 +01:00
|
|
|
|
2018-10-16 08:16:41 +01:00
|
|
|
export OLDDIR=`pwd`
|
2018-10-23 14:11:29 +01:00
|
|
|
export PATH="/usr/lib/ccache:/usr/lib/ccache/bin:$PATH"
|
2018-10-17 08:30:33 +01:00
|
|
|
|
2018-10-23 14:11:29 +01:00
|
|
|
export CFLAGS="-Os"
|
2018-10-23 13:59:52 +01:00
|
|
|
|
2018-10-27 19:46:35 +01:00
|
|
|
#rm -rf mpv-build
|
2018-11-05 07:46:50 +00:00
|
|
|
#git clone --depth 1 https://github.com/mpv-player/mpv-build mpv-build
|
|
|
|
#cd mpv-build
|
2018-10-14 13:29:02 +01:00
|
|
|
|
2018-10-18 08:19:38 +01:00
|
|
|
export MPVDIR=`pwd`
|
2018-10-23 12:23:54 +01:00
|
|
|
|
|
|
|
|
2018-11-05 07:46:50 +00:00
|
|
|
#rm -rf ffmpeg mpv libass
|
2018-10-23 13:59:52 +01:00
|
|
|
|
2018-11-05 07:46:50 +00:00
|
|
|
#echo "--disable-programs --enable-runtime-cpudetect --enable-small" > ffmpeg_options
|
|
|
|
#echo "--enable-libmpv-shared --prefix=/usr --disable-vapoursynth --enable-lgpl" > mpv_options
|
|
|
|
#echo "--disable-caca --disable-wayland --disable-gl-wayland --disable-libarchive --disable-zlib --disable-tv --disable-debug-build --disable-manpage-build --disable-libsmbclient --disable-wayland --disable-sdl --disable-sndio --enable-plain-gl" >> mpv_options
|
2018-10-14 19:17:16 +01:00
|
|
|
|
2018-11-05 07:46:50 +00:00
|
|
|
git clone https://github.com/mpv-player/mpv --depth 1
|
|
|
|
cd mpv
|
|
|
|
./bootstrap.py
|
2018-11-05 07:59:12 +00:00
|
|
|
./waf configure --disable-cplayer --disable-pdf-build --enable-libmpv-shared --prefix=/usr --disable-vapoursynth --enable-lgpl --disable-caca --disable-wayland --disable-gl-wayland --disable-libarchive --disable-zlib --disable-tv --disable-debug-build --disable-manpage-build --disable-libsmbclient --disable-wayland --disable-sdl --disable-sndio --enable-plain-gl
|
2018-11-05 07:46:50 +00:00
|
|
|
./waf
|
2018-11-05 07:59:12 +00:00
|
|
|
sudo ./waf install
|
2018-11-05 07:46:50 +00:00
|
|
|
|
|
|
|
#./rebuild -j`nproc`
|
|
|
|
#sudo ./install
|
2018-10-16 07:57:40 +01:00
|
|
|
ccache -s
|
2018-10-17 08:30:33 +01:00
|
|
|
|
2018-10-16 08:16:41 +01:00
|
|
|
cd $OLDDIR
|