1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-26 08:41:13 +02:00
vcmi/osx/download_dependencies.sh
2014-05-02 16:04:12 +03:00

8 lines
253 B
Bash

if [ -f ../.osx_dependencies_installed ];
then
echo "OS X prebuilt dependencies are already installled"
else
curl -o ../xcode-pack.zip -L http://download.vcmi.eu/xcode-pack.zip
unzip ../xcode-pack.zip -d ../
touch ../.osx_dependencies_installed
fi