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

38 lines
1.2 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-21 17:08:59 +01:00
export PATH="/usr/lib/ccache:/usr/lib/ccache/bin:$PATH"
2018-10-16 08:16:41 +01:00
2018-10-16 08:09:16 +01:00
export CFLAGS="-fPIC -Os"
2018-10-14 20:49:13 +01:00
2018-10-23 13:47:27 +01:00
ccache -C
2018-10-17 08:30:33 +01:00
export V=0 VERBOSE=0
#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
cd $MPVDIR
2018-10-14 23:21:51 +01:00
#rm -rf ffmpeg mpv libass
2018-10-16 08:39:26 +01:00
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-18 10:38:40 +01:00
#--enable-libaom
2018-10-23 13:36:01 +01:00
echo '--disable-debug --disable-shared --disable-ffplay --disable-doc --enable-gpl --enable-version3 --enable-nonfree --enable-pthreads --enable-libvpx --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libx264 --enable-avfilter --enable-filters' > 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-18 10:38:40 +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 --disable-wayland" >> mpv_options
2018-10-14 19:17:16 +01:00
2018-10-23 13:36:01 +01:00
sudo ./build -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