aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/get-mac.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/get-mac.sh')
-rwxr-xr-xscripts/get-mac.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/get-mac.sh b/scripts/get-mac.sh
new file mode 100755
index 00000000..9ce0cece
--- /dev/null
+++ b/scripts/get-mac.sh
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+pushd "`dirname $0`" > /dev/null
+scriptpath="`pwd`"
+popd > /dev/null
+
+. "$scriptpath/include.sh/build-dep.sh"
+
+deps="ctemplate-osx libetpan-osx uchardet-osx"
+for dep in $deps ; do
+ if test ! -d "$scriptpath/../Externals/$dep" ; then
+ name="$dep"
+ get_prebuilt_dep
+ fi
+done