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

19 lines
663 B
Bash
Raw Normal View History

#!/bin/bash
2018-10-14 20:49:13 +01:00
set -e
CFLAGS="-fPIC -Os"
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-14 20:49: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
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:19:13 +01:00
./build -j`nproc`
2018-10-14 19:35:07 +01:00
sudo ./install
cd ..