mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 00:15:06 +01:00
2e3834f880
* Update deps.sh GitHub's virtual environment provides 7zip and llvm by default, so brew may fail to install them as another version is already installed * Use || true to ignore brew installation errors
8 lines
171 B
Bash
Executable File
8 lines
171 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
brew update
|
|
brew unlink python@2 || true
|
|
rm '/usr/local/bin/2to3' || true
|
|
brew install qt5 sdl2 p7zip ccache ffmpeg llvm ninja || true
|
|
pip3 install macpack
|