From 0dff64bd9b645a7251815ff1f0197a46bb416e81 Mon Sep 17 00:00:00 2001 From: stopiccot Date: Fri, 2 May 2014 15:55:34 +0300 Subject: [PATCH] shell script to automate downloading of OS X prebuilt dependencies --- osx/download_dependencies.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 osx/download_dependencies.sh diff --git a/osx/download_dependencies.sh b/osx/download_dependencies.sh new file mode 100644 index 000000000..1e8b1daf2 --- /dev/null +++ b/osx/download_dependencies.sh @@ -0,0 +1,8 @@ +if [ -f ../.osx_dependencies_installed ]; +then + echo "OS X prebuilt dependencies are already installled" +else + curl -o ../xcode-pack.zip -L https://dl.dropboxusercontent.com/u/1777581/xcode-pack.zip + unzip ../xcode-pack.zip -d ../ + touch ../.osx_dependencies_installed +fi \ No newline at end of file