summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xSwift/Packaging/MacOSX/package.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/Swift/Packaging/MacOSX/package.sh b/Swift/Packaging/MacOSX/package.sh
index 4c7157f..a13a03c 100755
--- a/Swift/Packaging/MacOSX/package.sh
+++ b/Swift/Packaging/MacOSX/package.sh
@@ -19,13 +19,18 @@ gunzip -c $TEMPLATE > $WC_DMG
19rm -rf $WC_DIR 19rm -rf $WC_DIR
20mkdir -p $WC_DIR 20mkdir -p $WC_DIR
21hdiutil attach "$WC_DMG" -noautoopen -quiet -mountpoint "$WC_DIR" 21hdiutil attach "$WC_DMG" -noautoopen -quiet -mountpoint "$WC_DIR"
22ditto -rsrc "$APP" "$WC_DIR"/`basename $APP` 22ditto -rsrc "$APP" "$WC_DIR"/`basename $APP`
23$QTDIR/bin/macdeployqt "$WC_DIR"/`basename $APP` -no-strip 23$QTDIR/bin/macdeployqt "$WC_DIR"/`basename $APP` -no-strip
24
24# The bearer plugins of Qt5 cannot be disabled by an application. 25# The bearer plugins of Qt5 cannot be disabled by an application.
25# They will constantly ask the OS to scan for available wireless networks, unrelated to actual API calls. 26# They will constantly ask the OS to scan for available wireless networks, unrelated to actual API calls.
26# This results in unnessecary resource load, so we remove the plugins from our packages. 27# This results in unnessecary resource load, so we remove the plugins from our packages.
27rm "$WC_DIR"/`basename $APP`/Contents/PlugIns/bearer/*.dylib 28rm "$WC_DIR"/`basename $APP`/Contents/PlugIns/bearer/*.dylib
29
30# Remove debugging symbols from the application bundle
31rm -rf "$WC_DIR"/`basename $APP`/Contents/MacOS/*.dSYM
32
28hdiutil detach "$WC_DIR" -quiet -force 33hdiutil detach "$WC_DIR" -quiet -force
29rm -f $TARGET 34rm -f $TARGET
30hdiutil convert "$WC_DMG" -quiet -format UDZO -imagekey zlib-level=9 -o "$TARGET" 35hdiutil convert "$WC_DMG" -quiet -format UDZO -imagekey zlib-level=9 -o "$TARGET"
31rm -rf $WC_DMG $WC_DIR 36rm -rf $WC_DMG $WC_DIR