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