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-10-16 08:39:26 +01:00
|
|
|
git clone --depth 1 https://github.com/mpv-player/mpv-build mpv-build
|
2018-10-14 19:35:07 +01:00
|
|
|
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-10-23 13:59:52 +01:00
|
|
|
rm -rf ffmpeg mpv libass
|
|
|
|
|
2018-10-23 13:54:57 +01:00
|
|
|
echo ' ' > ffmpeg_options
|
2018-10-18 08:24:05 +01:00
|
|
|
echo "--disable-programs --disable-runtime-cpudetect --enable-small" >> ffmpeg_options
|
2018-10-25 12:22:42 +01:00
|
|
|
echo "--enable-libmpv-shared --prefix=/usr --enable-vapoursynth" > mpv_options
|
2018-10-27 19:46:35 +01:00
|
|
|
echo "--disable-caca --disable-wayland --disable-gl-wayland --disable-libarchive --disable-zlib --disable-tv --disable-debug-build --disable-manpage-build --disable-libsmbclient --disable-wayland" >> mpv_options
|
2018-10-14 19:17:16 +01:00
|
|
|
|
2018-10-23 14:37:26 +01:00
|
|
|
./rebuild -j`nproc`
|
2018-10-14 19:35:07 +01:00
|
|
|
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
|