From f94099b485248ebcaa943a6437fbec86b3fd567c Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Fri, 2 May 2008 03:30:44 +0000 Subject: Minimize binary size and external dependencies in OS X LaunchSLClient.app creation script. --- .../LaunchSLClient.app.skel/Contents/Info.plist | 12 +++++++ .../Contents/MacOS/LaunchSLClient | 13 +++++++ OpenSim/Tools/LaunchSLClient/make-OSX-app.sh | 42 +++++++++++----------- 3 files changed, 47 insertions(+), 20 deletions(-) create mode 100644 OpenSim/Tools/LaunchSLClient/LaunchSLClient.app.skel/Contents/Info.plist create mode 100755 OpenSim/Tools/LaunchSLClient/LaunchSLClient.app.skel/Contents/MacOS/LaunchSLClient (limited to 'OpenSim/Tools/LaunchSLClient') diff --git a/OpenSim/Tools/LaunchSLClient/LaunchSLClient.app.skel/Contents/Info.plist b/OpenSim/Tools/LaunchSLClient/LaunchSLClient.app.skel/Contents/Info.plist new file mode 100644 index 0000000..7139350 --- /dev/null +++ b/OpenSim/Tools/LaunchSLClient/LaunchSLClient.app.skel/Contents/Info.plist @@ -0,0 +1,12 @@ + + + + + CFBundleIdentifier + LaunchSLClient + CFBundleExecutable + LaunchSLClient + CFBundleIconFile + + + diff --git a/OpenSim/Tools/LaunchSLClient/LaunchSLClient.app.skel/Contents/MacOS/LaunchSLClient b/OpenSim/Tools/LaunchSLClient/LaunchSLClient.app.skel/Contents/MacOS/LaunchSLClient new file mode 100755 index 0000000..22acade --- /dev/null +++ b/OpenSim/Tools/LaunchSLClient/LaunchSLClient.app.skel/Contents/MacOS/LaunchSLClient @@ -0,0 +1,13 @@ +#!/bin/sh + +PWD=`pwd` + +# Fetch the path relative to the launch point where this shell script exists. +APP_PATH=`echo $0 | awk '{split($0,patharr,"/"); idx=1; while(patharr[idx+3] != "") { if (patharr[idx] != "/") {printf("%s/", patharr[idx]); idx++ }} }'` + +# Fetch the app name (its our own name) +APP_NAME=`echo $0 | awk '{split($0,patharr,"/"); idx=1; while(patharr[idx+1] != "") {idx++} printf("%s", patharr[idx]); }'` + +cd "$APP_PATH/Contents/Resources" + +./$APP_NAME diff --git a/OpenSim/Tools/LaunchSLClient/make-OSX-app.sh b/OpenSim/Tools/LaunchSLClient/make-OSX-app.sh index 9b9177e..aa37cb6 100755 --- a/OpenSim/Tools/LaunchSLClient/make-OSX-app.sh +++ b/OpenSim/Tools/LaunchSLClient/make-OSX-app.sh @@ -6,13 +6,22 @@ # This should be run from the bin directory. APP_NAME="LaunchSLClient" - -# Note that proper form is to copy Frameworks to -# *.app/Contents/Frameworks, but because @executable_path resolves to -# [...]/Resources/bin, and the libraries reference -# @executable_path/../Frameworks, we put frameworks in -# Contents/Resources instead. -FRAMEWORKS_PATH="${APP_NAME}.app/Contents/Resources/Frameworks" +SOURCE_PATH="../OpenSim/Tools/${APP_NAME}" + +ASSEMBLIES="mscorlib.dll \ + System.Windows.Forms.dll \ + System.Drawing.dll \ + System.Configuration.dll \ + System.Xml.dll \ + System.Security.dll \ + Mono.Security.dll \ + System.Data.dll \ + Mono.Data.Tds.dll \ + System.Transactions.dll \ + System.EnterpriseServices.dll \ + Mono.Mozilla.dll \ + Mono.Posix.dll \ + Accessibility.dll" if [ ! -e ${APP_NAME}.exe ]; then echo "Error: Could not find ${APP_NAME}.exe." >& 2 @@ -20,19 +29,12 @@ if [ ! -e ${APP_NAME}.exe ]; then exit 1 fi -CMDFLAGS="-m console -n ${APP_NAME} -a ${APP_NAME}.exe" - -REFERENCES="-r /Library/Frameworks/Mono.framework/Versions/Current/lib/ \ - -r Nini.dll \ - -r ${APP_NAME}.ini" - -if [ -f ${APP_NAME}.icns ]; then - CMDFLAGS="${CMDFLAGS} -i ${APP_NAME}.icns" -else - echo "Warning: no icon file found. Will use default application icon." >&2 -fi +mkbundle2 -z -o ${APP_NAME} ${APP_NAME}.exe ${ASSEMBLIES} || exit 1 if [ -d ${APP_NAME}.app ]; then rm -rf ${APP_NAME}.app; fi -macpack ${REFERENCES} ${CMDFLAGS} +cp -r ${SOURCE_PATH}/${APP_NAME}.app.skel ${APP_NAME}.app + +# mkbundle doesn't seem to recognize the -L option, so we can't include Nini.dll in the bundling +cp Nini.dll ${APP_NAME}.app/Contents/Resources -mkdir -p ${FRAMEWORKS_PATH} +cp ${APP_NAME} ${APP_NAME}.ini ${APP_NAME}.app/Contents/Resources -- cgit v1.1