blob: 98d78e3314463309d84597c4bc9c2e4002d7fb87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
WORKSPACE=${WORKSPACE:-$( cd $(dirname $0)/../../.. ; pwd -P )}
XBMC_PLATFORM_DIR=tvos
. $WORKSPACE/tools/buildsteps/defaultenv
if [ "$(pathChanged $WORKSPACE/tools/depends)" == "1" ]
then
cd $WORKSPACE/tools/depends;./configure \
--with-tarballs=/Users/Shared/xbmc-depends/tarballs \
--host=aarch64-apple-darwin \
--with-sdk=$SDK_VERSION \
--with-platform=tvos \
--prefix=$XBMC_DEPENDS_ROOT $DEBUG_SWITCH
fi
|