1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-19 09:01:15 +02:00

Improved support for building release on mac

This commit is contained in:
James Crook
2016-12-14 19:20:29 +00:00
parent 73d5f90578
commit 0d5cb77e3d
4 changed files with 34 additions and 25 deletions

13
mac/scripts/sign_dist.sh Normal file
View File

@@ -0,0 +1,13 @@
#Hand edit this to get the 'right' results.
#This batch file is just a reminder of the commands...
hdiutil resize -size 200m /private/tmp/TMP.dmg
hdiutil mount /private/tmp/TMP.dmg
codesign --deep -s IDENTITY -v "/Volumes/Audacity VERSION/Audacity.app"
spctl -s -v "Volumes/Audacity VERSION/Audacity.app"
hdiutil eject "/Volumes/Audacity VERSION/"
# Compress and prepare for Internet delivery
hdiutil convert /private/tmp/TMP.dmg -format UDZO -imagekey zlib-level=9 -o "/private/tmp/RESULT.dmg"