mirror of
https://github.com/JaCzekanski/Avocado.git
synced 2025-04-02 10:52:39 -04:00
13 lines
No EOL
382 B
Bash
Executable file
13 lines
No EOL
382 B
Bash
Executable file
#!/bin/bash -ex
|
|
|
|
export PREMAKE_VERSION="5.0.0-alpha13"
|
|
|
|
# Download Premake5
|
|
wget -nv https://github.com/premake/premake-core/releases/download/v$PREMAKE_VERSION/premake-$PREMAKE_VERSION-macosx.tar.gz
|
|
tar xzf premake-$PREMAKE_VERSION-macosx.tar.gz
|
|
mv premake5 /usr/local/bin/
|
|
rm premake-$PREMAKE_VERSION-macosx.tar.gz
|
|
|
|
# Download SDL2 and ccache
|
|
brew update
|
|
brew install sdl2 ccache |