aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/get-mac.sh
blob: 9ce0cece38a0b629e2e7e51a67be48a0e0d4b88f (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-osx libetpan-osx uchardet-osx"
for dep in $deps ; do
  if test ! -d "$scriptpath/../Externals/$dep" ; then
    name="$dep"
    get_prebuilt_dep
  fi
done