Chris@2265: #!/bin/bash -x Chris@514: cannam@1286: set -eu cannam@1286: Chris@514: # Execute this from the top-level directory of the project (the one Chris@514: # that contains the .app bundle). Supply the name of the .app bundle Chris@514: # as argument Chris@514: dir="$1" Chris@514: if [ -z "$dir" ] || [ ! -d "$dir" ]; then Chris@514: echo "Usage: $0 " Chris@514: echo "Where pkgdir is the directory containing .app" Chris@514: echo "All .app bundles in pkgdir will be signed" Chris@514: exit 2 Chris@514: fi Chris@2068: Chris@2068: # NB at some point we are going to have to include "--options runtime" Chris@2068: # in all of these codesign invocations, and figure out what to do Chris@2068: # about signing plugins... Chris@2068: Chris@2265: id="Developer ID Application: Chris Cannam" Chris@2265: opts="-fv --deep --options runtime -i org.sonicvisualiser.SonicVisualiser" Chris@2265: eopts="--entitlements deploy/osx/Entitlements.plist" Chris@2265: hopts="--entitlements deploy/osx/Entitlements-helpers.plist" Chris@2265: Chris@514: for app in "$dir"/*.app; do Chris@2068: find "$app" -name \*.dylib -print | while read fr; do Chris@2265: codesign -s "$id" $opts "$fr" Chris@2068: done Chris@2265: codesign -s "$id" $opts $hopts "$app/Contents/Resources/vamp-plugin-load-checker" Chris@2265: codesign -s "$id" $opts $hopts "$app/Contents/Resources/piper-vamp-simple-server" Chris@2265: codesign -s "$id" $opts $eopts "$app/Contents/MacOS/Sonic Visualiser" Chris@516: done Chris@516: