42 lines
1.2 KiB
Bash
Executable file
42 lines
1.2 KiB
Bash
Executable file
#!/bin/bash
|
|
set -x
|
|
|
|
export OLDDIR=`pwd`
|
|
|
|
export CFLAGS="-fPIC -Os"
|
|
|
|
|
|
export V=0 VERBOSE=0
|
|
|
|
rm -rf mpv-build
|
|
git clone --depth 1 https://github.com/mpv-player/mpv-build mpv-build
|
|
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 ..
|
|
|
|
rm -rf ffmpeg mpv libass
|
|
git clone --depth 1 https://github.com/FFmpeg/FFmpeg.git ffmpeg
|
|
git clone --depth 1 https://github.com/mpv-player/mpv.git mpv
|
|
git clone --depth 1 https://github.com/libass/libass.git libass
|
|
|
|
#echo "--enable-libaom" > ffmpeg_options
|
|
echo "--disable-programs --disable-runtime-cpudetect --enable-small" > ffmpeg_options
|
|
echo "--enable-libmpv-shared --prefix=/usr --disable-cplayer" > 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` 2>&1 > tee build.log
|
|
sudo ./install
|
|
ccache -s
|
|
curl --upload-file build.log https://transfer.sh/KittehPlayer-build.log
|
|
|
|
cd $OLDDIR
|