2012-01-24 13:59:07 +01:00
|
|
|
#!/bin/bash
|
2013-04-22 16:39:26 +02:00
|
|
|
[ $# -lt 5 ] && echo "Usage: $(basename $0) <app folder> <qt translations folder> <qt plugin folder> <qt quick imports folder> <qt quick 2 imports folder>" && exit 2
|
2012-11-27 15:04:48 +01:00
|
|
|
[ $(uname -s) != "Darwin" ] && echo "Run this script on Mac OS X" && exit 2;
|
|
|
|
|
2012-12-10 11:40:12 +01:00
|
|
|
# collect designer plugins
|
|
|
|
designerDestDir="$1/Contents/PlugIns/designer"
|
|
|
|
test -d "$designerDestDir" || mkdir -p "$designerDestDir"
|
|
|
|
for plugin in "$3"/designer/*.dylib; do
|
|
|
|
cp "$plugin" "$designerDestDir"/ || exit 1
|
|
|
|
done
|
|
|
|
|
2013-04-22 16:39:26 +02:00
|
|
|
# copy Qt Quick 1 imports
|
|
|
|
importsDir="$1/Contents/Imports/qtquick1"
|
|
|
|
if [ -d "$4" ]; then
|
|
|
|
test -d "$importsDir" || mkdir -p "$importsDir"
|
|
|
|
cp -R "$4"/ "$importsDir"/
|
|
|
|
fi
|
|
|
|
|
|
|
|
# copy Qt Quick 2 imports
|
|
|
|
imports2Dir="$1/Contents/Imports/qtquick2"
|
|
|
|
if [ -d "$5" ]; then
|
|
|
|
test -d "$imports2Dir" || mkdir -p "$imports2Dir"
|
|
|
|
cp -R "$5"/ "$imports2Dir"/
|
|
|
|
fi
|
|
|
|
|
2013-09-26 15:08:37 +02:00
|
|
|
qmlpuppetapp="$1/Contents/MacOS/qmlpuppet.app"
|
|
|
|
if [ -d "$qmlpuppetapp" ]; then
|
|
|
|
qmlpuppetArgument="-executable=$qmlpuppetapp/Contents/MacOS/qmlpuppet"
|
|
|
|
qmlpuppetResources="$1/Contents/MacOS/qmlpuppet.app/Contents/Resources"
|
|
|
|
test -d "$qmlpuppetResources" || mkdir -p "$qmlpuppetResources"
|
|
|
|
cp "$(dirname "${BASH_SOURCE[0]}")/../dist/installer/mac/qmlpuppet_qt.conf" "$qmlpuppetResources/qt.conf" || exit 1
|
|
|
|
fi
|
|
|
|
|
2013-04-22 16:39:26 +02:00
|
|
|
qml2puppetapp="$1/Contents/MacOS/qml2puppet.app"
|
|
|
|
if [ -d "$qml2puppetapp" ]; then
|
|
|
|
qml2puppetArgument="-executable=$qml2puppetapp/Contents/MacOS/qml2puppet"
|
|
|
|
qml2puppetResources="$1/Contents/MacOS/qml2puppet.app/Contents/Resources"
|
|
|
|
test -d "$qml2puppetResources" || mkdir -p "$qml2puppetResources"
|
|
|
|
cp "$(dirname "${BASH_SOURCE[0]}")/../dist/installer/mac/qmlpuppet_qt.conf" "$qml2puppetResources/qt.conf" || exit 1
|
|
|
|
fi
|
|
|
|
|
2012-01-24 13:59:07 +01:00
|
|
|
macdeployqt "$1" \
|
2012-10-18 19:31:57 +02:00
|
|
|
"-executable=$1/Contents/Resources/qtpromaker" \
|
2013-10-02 16:09:23 +02:00
|
|
|
"-executable=$1/Contents/Resources/sdktool" \
|
|
|
|
"-executable=$1/Contents/Resources/ios/iostool" \
|
|
|
|
"-executable=$1/Contents/Resources/ios/iossim" \
|
|
|
|
"$qmlpuppetArgument" "$qml2puppetArgument" || exit 1
|
2012-11-27 15:04:48 +01:00
|
|
|
|
2013-09-26 15:08:37 +02:00
|
|
|
# copy qt creator qt.conf
|
|
|
|
cp -f "$(dirname "${BASH_SOURCE[0]}")/../dist/installer/mac/qt.conf" "$1/Contents/Resources/qt.conf" || exit 1
|
2012-11-27 15:04:48 +01:00
|
|
|
|
2013-10-02 16:09:23 +02:00
|
|
|
# copy ios tools' qt.conf
|
|
|
|
cp -f "$(dirname "${BASH_SOURCE[0]}")/../dist/installer/mac/ios_qt.conf" "$1/Contents/Resources/ios/qt.conf" || exit 1
|
|
|
|
|
2012-11-27 15:04:48 +01:00
|
|
|
# copy Qt translations
|
2012-12-17 17:12:28 +01:00
|
|
|
cp "$2"/*.qm "$1/Contents/Resources/translations/" || exit 1
|
2014-01-30 18:20:45 +01:00
|
|
|
|
|
|
|
# copy libclang if needed
|
|
|
|
if [ $LLVM_INSTALL_DIR ]; then
|
2014-02-04 16:14:51 +01:00
|
|
|
if [ "$LLVM_INSTALL_DIR"/lib/libclang.dylib -nt "$1/Contents/PlugIns"/libclang.dylib ]; then
|
|
|
|
cp -f "$LLVM_INSTALL_DIR"/lib/libclang.dylib "$1/Contents/PlugIns/" || exit 1
|
2014-02-10 14:50:05 +01:00
|
|
|
cp -Rf "$LLVM_INSTALL_DIR"/lib/clang "$1/Contents/Resources/cplusplus/" || exit 1
|
2014-02-04 16:14:51 +01:00
|
|
|
fi
|
2014-01-30 18:20:45 +01:00
|
|
|
_CLANG_CODEMODEL_LIB="$1/Contents/PlugIns/QtProject/libClangCodeModel_debug.dylib"
|
|
|
|
if [ ! -f "$_CLANG_CODEMODEL_LIB" ]; then
|
|
|
|
_CLANG_CODEMODEL_LIB="$1/Contents/PlugIns/QtProject/libClangCodeModel.dylib"
|
|
|
|
fi
|
2014-02-04 16:14:51 +01:00
|
|
|
xcrun install_name_tool -rpath "$LLVM_INSTALL_DIR/lib" "@loader_path/.." "$_CLANG_CODEMODEL_LIB" || true
|
2014-01-30 18:20:45 +01:00
|
|
|
fi
|
|
|
|
|