mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
62 lines
2.1 KiB
Bash
Executable File
62 lines
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
TMP=/tmp
|
|
BUNDLE_PATH=bin
|
|
test -d bin || BUNDLE_PATH=../bin
|
|
|
|
WORK_TEMPLATE=tmp-QupZilla-release.dmg.sparseimage
|
|
|
|
# NOTE: Value must currently match -volname exactly or an error happens in AppleScript with Finder
|
|
VOLUME_TEMPLATE=QupZilla
|
|
|
|
echo "Ensuring working disk image template is not in use…"
|
|
hdiutil detach "$TMP/$WORK_TEMPLATE"
|
|
|
|
echo "Creating writable working disk image template…"
|
|
hdiutil create -size 200m "$TMP/$WORK_TEMPLATE" -type SPARSE -fs HFS+ -volname "QupZilla"
|
|
|
|
echo "Attaching working disk image template for modification…"
|
|
hdiutil attach "$TMP/$WORK_TEMPLATE" -mountpoint "$TMP/$VOLUME_TEMPLATE"
|
|
|
|
echo "Creating background image folder…"
|
|
mkdir "$TMP/$VOLUME_TEMPLATE/.background"
|
|
|
|
echo "Copying background image…"
|
|
cp images/qupzilla-dmg-background.png "$TMP/$VOLUME_TEMPLATE/.background/"
|
|
|
|
echo "Creating volume icon set…"
|
|
iconutil -c icns images/qupzilla-dmg-icon.iconset -o "$TMP/$VOLUME_TEMPLATE/.VolumeIcon.icns"
|
|
|
|
echo "Creating application reference folder…"
|
|
mkdir "$TMP/$VOLUME_TEMPLATE/QupZilla.app"
|
|
|
|
echo "Creating symbolic link to global Applications folder…"
|
|
ln -s /Applications "$TMP/$VOLUME_TEMPLATE/Applications"
|
|
|
|
echo "Setting some proprietary window modifications here with AppleScript…"
|
|
osascript create_dmg.scpt
|
|
|
|
sleep 5
|
|
|
|
echo "Registering that a custom icon has been set…"
|
|
SetFile -a C "$TMP/$VOLUME_TEMPLATE"
|
|
|
|
echo "Copying application bundle contents…"
|
|
cp -fpR "$BUNDLE_PATH/QupZilla.app/Contents" "$TMP/$VOLUME_TEMPLATE/QupZilla.app"
|
|
|
|
echo "Blessing folder to automatically open on mount…"
|
|
bless --folder "$TMP/$VOLUME_TEMPLATE" --openfolder "$TMP/$VOLUME_TEMPLATE"
|
|
|
|
echo "Detaching working disk image template from write…"
|
|
hdiutil detach "$TMP/$VOLUME_TEMPLATE"
|
|
|
|
echo "Compacting working disk image…"
|
|
hdiutil compact "$TMP/$WORK_TEMPLATE"
|
|
|
|
echo "Converting working disk image to read only…"
|
|
rm "$BUNDLE_PATH/QupZilla.dmg"
|
|
hdiutil convert "$TMP/$WORK_TEMPLATE" -format UDBZ -o "$BUNDLE_PATH/QupZilla.dmg"
|
|
|
|
echo "Cleaning up"
|
|
rm "$TMP/$WORK_TEMPLATE"
|