Avocado/.travis/macos/install-dependencies.sh
2019-01-20 14:55:37 +01:00

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