40 lines
1.1 KiB
Bash
Executable file
40 lines
1.1 KiB
Bash
Executable file
#!/bin/bash
|
|
set -ex
|
|
|
|
export OLDDIR=`pwd`
|
|
|
|
export CFLAGS="-fPIC -Os"
|
|
|
|
export CCACHE_SLOPPINESS=time_macros
|
|
export CCACHE=`which ccache`
|
|
|
|
cd $HOME/.cache
|
|
|
|
git clone --depth 1 https://github.com/mpv-player/mpv-build mpv-build || true
|
|
cd mpv-build
|
|
|
|
#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 ..
|
|
|
|
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-libaom" > ffmpeg_options
|
|
echo "--extra-cflags=\'$CFLAGS\'" > ffmpeg_options
|
|
echo "--enable-libmpv-static --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
|
|
|
|
./rebuild -j`nproc`
|
|
sudo ./install
|
|
ccache -s
|
|
cd $OLDDIR
|