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

32 lines
1,006 B
Bash
Raw Normal View History

#!/bin/bash
2018-10-14 21:50:14 +01:00
set -ex
2018-10-14 20:49:13 +01:00
CFLAGS="-fPIC -Os"
2018-10-14 23:26:13 +01:00
git clone --depth 1 https://github.com/mpv-player/mpv-build mpv-build || true
2018-10-14 19:35:07 +01:00
cd mpv-build
2018-10-15 07:35:58 +01:00
#git clone --depth 1 http://aomedia.googlesource.com/aom aom || true
#mkdir aom-build || true
#cd aom-build
# cmake ../aom \
# -DCMAKE_INSTALL_PREFIX=/usr \
# -DBUILD_SHARED_LIBS=1 \
# -DENABLE_TESTS=0 -G "Unix Makefiles"
#make -j`nproc`
#sudo make install
#cd ..
2018-10-14 23:21:51 +01:00
2018-10-14 23:26:13 +01:00
git clone --depth 1 https://github.com/FFmpeg/FFmpeg.git ffmpeg || true
git clone --depth 1 https://github.com/mpv-player/mpv.git mpv || true
git clone --depth 1 https://github.com/libass/libass.git libass || true
2018-10-14 20:49:13 +01:00
2018-10-15 07:35:58 +01:00
#echo "--enable-libaom" > ffmpeg_options
2018-10-14 23:21:51 +01:00
echo "--enable-libmpv-shared --enable-libmpv-static --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-14 21:50:14 +01:00
./rebuild -j`nproc`
2018-10-14 19:35:07 +01:00
sudo ./install
cd ..