13
0

fix setting OSX DMG background for 10.9.X

This commit is contained in:
Robin Gareus 2014-10-08 19:16:31 +02:00
parent aac3ca5521
commit 93f816b2fe

View File

@ -596,7 +596,7 @@ VOLNAME=$APPNAME-$release_version
# TODO use mktemp # TODO use mktemp
export TMPDIR=`pwd` export TMPDIR=`pwd`
MNTPATH=`mktemp -d -t /ardourimg` MNTPATH=`mktemp -d -t ardourimg`
TMPDMG=`mktemp -t ardour` TMPDMG=`mktemp -t ardour`
ICNSTMP=`mktemp -t ardouricon` ICNSTMP=`mktemp -t ardouricon`
EXTRA_SPACE_MB=30 EXTRA_SPACE_MB=30
@ -621,24 +621,33 @@ cp -vi ${DMGBACKGROUND} "${MNTPATH}/.background/dmgbg.png"
echo "setting DMG background ..." echo "setting DMG background ..."
echo ' if test $(sw_vers -productVersion | cut -d '.' -f 2) -lt 9; then
# OSX ..10.8.X
DISKNAME=${VOLNAME}
else
# OSX 10.9.X and later
DISKNAME=`basename "${MNTPATH}"`
fi
osascript << EOF
tell application "Finder" tell application "Finder"
tell disk "'${VOLNAME}'" activate
tell disk "${DISKNAME}"
open open
set current view of container window to icon view set current view of container window to icon view
set toolbar visible of container window to false set toolbar visible of container window to false
set statusbar visible of container window to false set statusbar visible of container window to false
set the bounds of container window to {400, 200, 800, '${DMGWINBOTTOM}'} set the bounds of container window to {400, 200, 800, ${DMGWINBOTTOM}}
set theViewOptions to the icon view options of container window set theViewOptions to the icon view options of container window
set arrangement of theViewOptions to not arranged set arrangement of theViewOptions to not arranged
set icon size of theViewOptions to 64 set icon size of theViewOptions to 64
set background picture of theViewOptions to file ".background:dmgbg.png" set background picture of theViewOptions to file ".background:dmgbg.png"
make new alias file at container window to POSIX file "/Applications" with properties {name:"Applications"} make new alias file at container window to POSIX file "/Applications" with properties {name:"Applications"}
set position of item "'${APPDIR}'" of container window to {90, 100} set position of item "${APPDIR}" of container window to {90, 100}
set position of item "Applications" of container window to {310, 100} set position of item "Applications" of container window to {310, 100}
'${MIXBUSPOS}' ${MIXBUSPOS}
'${HARVIDPOS}' ${HARVIDPOS}
'${XJADEOPOS}' ${XJADEOPOS}
close close
open open
update without registering applications update without registering applications
@ -646,7 +655,7 @@ echo '
eject eject
end tell end tell
end tell end tell
' | osascript EOF
chmod -Rf go-w "${MNTPATH}" chmod -Rf go-w "${MNTPATH}"
sync sync