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

39 lines
1 KiB
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-16 08:09:16 +01:00
export CFLAGS="-fPIC -Os"
2018-10-14 20:49:13 +01:00
2018-10-17 08:30:33 +01:00
export V=0 VERBOSE=0
2018-10-16 08:39:26 +01:00
rm -rf mpv-build
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`
mkdir aom -p
cd aom
git clone --depth 1 https://aomedia.googlesource.com/aom
cmake aom/
make
sudo checkinstall -y --deldoc=yes
cd $MPVDIR
2018-10-14 23:21:51 +01:00
2018-10-16 08:39:26 +01:00
rm -rf ffmpeg mpv libass
git clone --depth 1 https://github.com/FFmpeg/FFmpeg.git ffmpeg
git clone --depth 1 https://github.com/mpv-player/mpv.git mpv
git clone --depth 1 https://github.com/libass/libass.git libass
2018-10-14 20:49:13 +01:00
2018-10-18 08:19:38 +01:00
echo "--enable-libaom" > ffmpeg_options
2018-10-18 08:24:05 +01:00
echo "--disable-programs --disable-runtime-cpudetect --enable-small" >> ffmpeg_options
2018-10-17 08:35:17 +01:00
echo "--enable-libmpv-shared --prefix=/usr" > mpv_options
2018-10-14 20:49:13 +01:00
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
2018-10-17 08:35:17 +01:00
./rebuild -j`nproc` 2>&1 > build.log
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