2020-11-11 23:21:35 -06:00
|
|
|
#!/bin/sh -ex
|
|
|
|
|
|
|
|
brew update
|
|
|
|
brew unlink python@2 || true
|
2020-12-30 16:10:18 -06:00
|
|
|
rm '/usr/local/bin/2to3' || true
|
2021-09-12 14:27:29 -05:00
|
|
|
brew install qt5 p7zip ccache ninja || true
|
2020-11-11 23:21:35 -06:00
|
|
|
pip3 install macpack
|
2021-09-12 14:27:29 -05:00
|
|
|
|
|
|
|
export SDL_VER=2.0.16
|
|
|
|
export FFMPEG_VER=4.4
|
|
|
|
|
|
|
|
mkdir tmp
|
|
|
|
cd tmp/
|
|
|
|
|
|
|
|
# install SDL
|
|
|
|
wget https://github.com/SachinVin/ext-macos-bin/raw/main/sdl2/sdl-${SDL_VER}.7z
|
|
|
|
7z x sdl-${SDL_VER}.7z
|
|
|
|
cp -rv $(pwd)/sdl-${SDL_VER}/* /
|
|
|
|
|
|
|
|
# install FFMPEG
|
|
|
|
wget https://github.com/SachinVin/ext-macos-bin/raw/main/ffmpeg/ffmpeg-${FFMPEG_VER}.7z
|
|
|
|
7z x ffmpeg-${FFMPEG_VER}.7z
|
|
|
|
cp -rv $(pwd)/ffmpeg-${FFMPEG_VER}/* /
|