19 lines
663 B
Bash
Executable file
19 lines
663 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
CFLAGS="-fPIC -Os"
|
|
|
|
git clone --depth 1 https://github.com/mpv-player/mpv-build mpv-build || true
|
|
cd mpv-build
|
|
|
|
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
|
|
|
|
./build -j`nproc`
|
|
sudo ./install
|
|
cd ..
|