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

27 lines
759 B
Bash
Raw Normal View History

#!/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-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-30 12:34:13 +00:00
echo "--disable-programs --enable-runtime-cpudetect --enable-small" > ffmpeg_options
echo "--enable-libmpv-shared --prefix=/usr --disable-vapoursynth --enable-lgpl" > mpv_options
2018-11-04 20:40:40 +00: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 --disable-sdl --disable-sndio -plain-gl" >> 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