mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-26 08:41:13 +02:00
8 lines
253 B
Bash
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 |