annotate deploy/osx/sign.sh @ 2239:e870eb307901 single-point

Update to use revised export ID mechanism for XmlExportables, etc
author Chris Cannam
date Thu, 28 Mar 2019 11:58:58 +0000
parents 4f4eb416fcb4
children d33dff02b39b 9ca6872a5d0f
rev   line source
Chris@680 1 #!/bin/bash
Chris@514 2
cannam@1286 3 set -eu
cannam@1286 4
Chris@514 5 # Execute this from the top-level directory of the project (the one
Chris@514 6 # that contains the .app bundle). Supply the name of the .app bundle
Chris@514 7 # as argument
Chris@514 8 dir="$1"
Chris@514 9 if [ -z "$dir" ] || [ ! -d "$dir" ]; then
Chris@514 10 echo "Usage: $0 <pkgdir>"
Chris@514 11 echo "Where pkgdir is the directory containing <MyApplication>.app"
Chris@514 12 echo "All .app bundles in pkgdir will be signed"
Chris@514 13 exit 2
Chris@514 14 fi
Chris@2068 15
Chris@2068 16 # NB at some point we are going to have to include "--options runtime"
Chris@2068 17 # in all of these codesign invocations, and figure out what to do
Chris@2068 18 # about signing plugins...
Chris@2068 19
Chris@514 20 for app in "$dir"/*.app; do
Chris@2068 21 find "$app" -name \*.dylib -print | while read fr; do
Chris@2068 22 codesign -s "Developer ID Application: Chris Cannam" -fv --deep "$fr"
Chris@2068 23 done
Chris@2068 24 codesign -s "Developer ID Application: Chris Cannam" -fv --deep "$app/Contents/MacOS/Sonic Visualiser"
cannam@1505 25 codesign -s "Developer ID Application: Chris Cannam" -fv --deep "$app"
Chris@2068 26 # codesign -s "Developer ID Application: Chris Cannam" -fv --deep \
Chris@2068 27 # --requirements '=designated => identifier "org.sonicvisualiser.SonicVisualiser" and ( (anchor apple generic and certificate leaf[field.1.2.840.113635.100.6.1.9] ) or (anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] and certificate leaf[field.1.2.840.113635.100.6.1.13] and certificate leaf[subject.OU] = "M2H8666U82"))' \
Chris@2068 28 # "$app"
Chris@516 29 done
Chris@516 30