-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5297747
commit 38bbfba
Showing
1 changed file
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
#!/bin/zsh | ||
PROJECT_PATH="." | ||
BUILD_PATH="./Build" | ||
APP_SUPPORT_PATH="${BUILD_PATH}/payload/Library/Application Support/SupportCompanion" | ||
PUBLISH_OUTPUT_DIRECTORY="${PROJECT_PATH}/bin/Release/net8.0-macos/SupportCompanion.app" | ||
PUBLISH_OUTPUT_APP="${PROJECT_PATH}/bin/Release/net8.0-macos/SupportCompanion.app" | ||
ICON_FILE="${PROJECT_PATH}/Assets/appicon.icns" | ||
SUKIUI_LICENSE_FILE="${PROJECT_PATH}/SUKIUI_LICENSE" | ||
UNINSTALL_SCRIPT="${PROJECT_PATH}/Assets/Uninstall.sh" | ||
VERSION=$(/usr/libexec/PlistBuddy -c "Print :CFBundleVersion" "${PROJECT_PATH}/Info.plist") | ||
CURRENT_SC_MAIN_BUILD_VERSION=$VERSION | ||
NEWSUBBUILD=$((80620 + $(git rev-parse HEAD~0 | xargs -I{} git rev-list --count {}))) | ||
|
||
# automate the build version bump | ||
AUTOMATED_SC_BUILD="$CURRENT_SC_MAIN_BUILD_VERSION.$NEWSUBBUILD" | ||
|
||
echo "$AUTOMATED_SC_BUILD" > "./build_info.txt" | ||
echo "$CURRENT_SC_MAIN_BUILD_VERSION" > "./build_info_main.txt" | ||
|
||
# is dotnet installed? | ||
dotnet="$(dotnet --version)" | ||
|
||
if [ -z "$dotnet" ] | ||
then | ||
echo "dotnet is not installed" | ||
exit 1 | ||
fi | ||
|
||
if [ -d "$PUBLISH_OUTPUT_DIRECTORY" ] | ||
then | ||
rm -rf "$PUBLISH_OUTPUT_DIRECTORY" | ||
fi | ||
|
||
if [ -d "$APP_SUPPORT_PATH/scripts" ] | ||
then | ||
rm -rf "$APP_SUPPORT_PATH/scripts" | ||
fi | ||
|
||
if [ -d "$BUILD_PATH/payload/Applications/Utilities/SupportCompanion.app/" ] | ||
then | ||
rm -rf "$BUILD_PATH/payload/Applications/Utilities/SupportCompanion.app/" | ||
fi | ||
|
||
dotnet publish --configuration Release -p:UseAppHost=true | ||
|
||
# Create the Applications directory and utilities directory | ||
mkdir -p "${BUILD_PATH}/payload/Applications/Utilities" | ||
|
||
rm -f "$PUBLISH_OUTPUT_DIRECTORY/Contents/Resources/suki_photo.ico" | ||
cp "$ICON_FILE" "$PUBLISH_OUTPUT_DIRECTORY/Contents/Resources/" | ||
cp "$UNINSTALL_SCRIPT" "$PUBLISH_OUTPUT_DIRECTORY/Contents/Resources/" | ||
cp "$SUKIUI_LICENSE_FILE" "$PUBLISH_OUTPUT_DIRECTORY/Contents/Resources/" | ||
chmod +x "$PUBLISH_OUTPUT_DIRECTORY/Contents/Resources/Uninstall.sh" | ||
cp -a "${PROJECT_PATH}/Assets/scripts" "${BUILD_PATH}/payload/Library/Application Support/SupportCompanion/" | ||
|
||
# set the plist version to AUTOMATED_SC_BUILD | ||
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $AUTOMATED_SC_BUILD" "${PUBLISH_OUTPUT_APP}/Contents/Info.plist" | ||
/usr/libexec/PlistBuddy -c "Set :CFBundleShortVersionString $AUTOMATED_SC_BUILD" "${PUBLISH_OUTPUT_APP}/Contents/Info.plist" | ||
|
||
# mv each script file to remove the extension | ||
SCRIPT_FILES="$(ls "${APP_SUPPORT_PATH}/scripts/")" | ||
for SCRIPT_FILE in $SCRIPT_FILES | ||
do | ||
FILE_WITHOUT_EXT=$(basename "$SCRIPT_FILE" .py) | ||
mv "$APP_SUPPORT_PATH/scripts/$SCRIPT_FILE" "$APP_SUPPORT_PATH/scripts/$FILE_WITHOUT_EXT" | ||
chmod +x "$APP_SUPPORT_PATH/scripts/$FILE_WITHOUT_EXT" | ||
done | ||
|
||
cp -a "$PUBLISH_OUTPUT_APP" "${BUILD_PATH}/payload/Applications/Utilities/" | ||
|
||
# Create the json file for munkipkg Support Companion pkg | ||
/bin/cat << SIGNED_JSONFILE > "$BUILD_PATH/build-info.json" | ||
{ | ||
"ownership": "recommended", | ||
"suppress_bundle_relocation": true, | ||
"identifier": "com.almenscorner.supportcompanion", | ||
"postinstall_action": "none", | ||
"distribution_style": true, | ||
"version": "$AUTOMATED_SC_BUILD", | ||
"name": "SupportCompanion-$AUTOMATED_SC_BUILD.pkg", | ||
"install_location": "/" | ||
} | ||
SIGNED_JSONFILE | ||
|
||
# Create the signed pkg | ||
munkipkg "$BUILD_PATH" |