aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/get-ios.sh
blob: 1ebc5dbb66152e24c45dde28f11783d68a5a963e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

pushd "`dirname $0`" > /dev/null
scriptpath="`pwd`"
popd > /dev/null

. "$scriptpath/include.sh/build-dep.sh"

deps="ctemplate-ios libetpan-ios tidy-html5-ios uchardet-ios"
for dep in $deps ; do
  if test ! -d "$scriptpath/../Externals/$dep" ; then
    name="$dep"
    get_prebuilt_dep
  fi
done