You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
147 lines
3.5 KiB
147 lines
3.5 KiB
#!/bin/bash
|
|
|
|
# Executables
|
|
QMAKE="/usr/bin/qmake"
|
|
MACDEPLOYQT="/usr/bin/macdeployqt"
|
|
DMGUTIL=./thirdparty/refnum/dmgutil.pl
|
|
DSYMUTIL=/usr/bin/dsymutil
|
|
DUMPSYMS=./thirdparty/google-breakpad/r318/bin/macx/dump_syms
|
|
STRIP=/usr/bin/strip
|
|
PLISTBUDDY=/usr/libexec/PlistBuddy
|
|
|
|
# Directories
|
|
BUILD_DIR="build/macx/release"
|
|
PRODUCT_DIR="$BUILD_DIR/product"
|
|
|
|
function notify {
|
|
GROWLNOTIFY=`which growlnotify`
|
|
if [ -x "$GROWLNOTIFY" ]; then
|
|
$GROWLNOTIFY --name uniboard-build --iconpath /Developer/Applications/Xcode.app --message "$1" "Uniboard"
|
|
fi
|
|
printf "\033[32m--->\033[0m $1\n"
|
|
}
|
|
|
|
function abort {
|
|
printf "\033[31merror:\033[0m $1\n"
|
|
exit 1
|
|
}
|
|
|
|
function warn {
|
|
abort "$1"
|
|
}
|
|
|
|
function checkExecutable {
|
|
if [ ! -x "$1" ]; then
|
|
abort "$1 not found"
|
|
fi
|
|
}
|
|
|
|
trap "defaults write com.mnemis.Uniboard.release Running -bool NO" EXIT
|
|
|
|
notify "Running Uniboard release script (`date`)"
|
|
|
|
script_is_running=`defaults read com.mnemis.Uniboard.release Running 2>/dev/null`
|
|
if [[ $? -eq 0 ]] && [[ "$script_is_running" = "1" ]]; then
|
|
trap EXIT
|
|
abort "another release script already running"
|
|
fi
|
|
defaults write com.mnemis.Uniboard.release Running -bool YES
|
|
|
|
# Check for executables
|
|
checkExecutable "$QMAKE"
|
|
checkExecutable "$MACDEPLOYQT"
|
|
checkExecutable "$DMGUTIL"
|
|
checkExecutable "$DSYMUTIL"
|
|
checkExecutable "$DUMPSYMS"
|
|
checkExecutable "$STRIP"
|
|
checkExecutable "$PLISTBUDDY"
|
|
|
|
|
|
# delete the build directory
|
|
notify "Cleaning ..."
|
|
rm -rf "$BUILD_DIR"
|
|
|
|
# generate Makefiles
|
|
notify "Generating Makefile ..."
|
|
|
|
QMAKE_CMD="$QMAKE -spec macx-g++42"
|
|
|
|
$QMAKE_CMD
|
|
|
|
VERSION=`cat "$BUILD_DIR/version"`
|
|
if [ "$VERSION" == "" ]; then
|
|
abort "version not found"
|
|
fi
|
|
|
|
SVN_REVISION=`svnversion`
|
|
# only accept up to date, non modified, non switched svn revisions
|
|
if echo $SVN_REVISION | grep -q [:MS]
|
|
then
|
|
#warn "bad subversion revision ($SVN_REVISION)"
|
|
echo "bad subversion revision ($SVN_REVISION)"
|
|
fi
|
|
|
|
# build
|
|
notify "Compiling ..."
|
|
make -j4 release
|
|
|
|
if [ $? != 0 ]; then
|
|
abort "compilation failed"
|
|
fi
|
|
|
|
|
|
NAME="Sankore 3.1"
|
|
|
|
DMG="$NAME.dmg"
|
|
VOLUME="/Volumes/$NAME"
|
|
APP="$PRODUCT_DIR/Sankore 3.1.app"
|
|
DSYM_NAME="$NAME (r$SVN_REVISION).dSYM"
|
|
DSYM="$PRODUCT_DIR/$DSYM_NAME"
|
|
GSYM_i386="$PRODUCT_DIR/$NAME i386.sym"
|
|
INFO_PLIST="$APP/Contents/Info.plist"
|
|
|
|
rm -f "$APP/Contents/Resources/empty.lproj"
|
|
|
|
notify "Removing .svn directories ..."
|
|
find "$APP" -name .svn -exec rm -rf {} \; 2> /dev/null
|
|
|
|
# set various version infomration in Info.plist
|
|
$PLISTBUDDY -c "Set :CFBundleVersion $SVN_REVISION" "$INFO_PLIST"
|
|
$PLISTBUDDY -c "Set :CFBundleShortVersionString $VERSION" "$INFO_PLIST"
|
|
$PLISTBUDDY -c "Set :CFBundleGetInfoString $NAME" "$INFO_PLIST"
|
|
|
|
# bundle Qt Frameworks into the app bundle
|
|
notify "Bulding frameworks ..."
|
|
$MACDEPLOYQT "$APP"
|
|
|
|
notify "Extracting debug information ..."
|
|
$DSYMUTIL "$APP/Contents/MacOS/Sankore 3.1" -o "$DSYM"
|
|
$DUMPSYMS -a i386 "$DSYM/Contents/Resources/DWARF/Sankore 3.1" > "$GSYM_i386"
|
|
$STRIP -S "$APP/Contents/MacOS/Sankore 3.1"
|
|
|
|
notify "Creating dmg ..."
|
|
umount "$VOLUME" 2> /dev/null
|
|
$DMGUTIL --open --volume="$NAME" "$DMG"
|
|
|
|
cp -R "$APP" "$VOLUME"
|
|
ln -s /Applications "$VOLUME"
|
|
|
|
$DMGUTIL --set --iconsize=96 --toolbar=false --icon=resources/macx/UniboardDmg.icns "$VOLUME"
|
|
$DMGUTIL --set --x=20 --y=60 --width=580 --height=312 "$VOLUME"
|
|
$DMGUTIL --set --x=180 --y=160 "$VOLUME/`basename \"$APP\"`"
|
|
$DMGUTIL --set --x=400 --y=160 "$VOLUME/Applications"
|
|
|
|
$DMGUTIL --close --volume="$NAME" "$DMG"
|
|
|
|
notify "$NAME is built"
|
|
|
|
PRODUCT_DIR="install/mac/"
|
|
|
|
if [ ! -d "${PRODUCT_DIR}" ]; then
|
|
mkdir -p "${PRODUCT_DIR}"
|
|
fi
|
|
|
|
mv "$DMG" "${PRODUCT_DIR}"
|
|
|
|
exit 0
|
|
|
|
|