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

29 lines
1 KiB
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 00:27:39 +01:00
git clone --depth 1 https://github.com/mozilla/aom aom || true
2018-10-14 23:28:45 +01:00
mkdir aom-build || true
2018-10-14 23:26:13 +01:00
cd aom-build
2018-10-15 00:30:30 +01:00
../aom/configure --enable-pic --enable-av1 --enable-shared --prefix=/usr --disable-sse --disable-runtime-cpu-detect --disable-optimizations --enable-small --disable-mmx --disable-examples --disable-docs --disable-tools
2018-10-14 23:21:51 +01:00
make -j`nproc`
sudo make install
cd ..
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-14 23:21:51 +01:00
echo "--enable-libaom" > ffmpeg_options
2018-10-14 20:49:13 +01:00
echo "--enable-libmpv-shared --prefix=/usr" > mpv_options
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 ..