Chris@680: #!/bin/bash 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@2385: entitlements=deploy/osx/Entitlements.plist Chris@2385: helper_entitlements=deploy/osx/HelperEntitlements.plist Chris@2068: Chris@514: for app in "$dir"/*.app; do Chris@2068: find "$app" -name \*.dylib -print | while read fr; do Chris@2385: codesign -s "Developer ID Application: Chris Cannam" -fv --deep --options runtime "$fr" Chris@2068: done Chris@2385: codesign -s "Developer ID Application: Chris Cannam" -fv --deep --options runtime --entitlements "$entitlements" "$app/Contents/MacOS/Sonic Visualiser" Chris@2385: codesign -s "Developer ID Application: Chris Cannam" -fv --deep --options runtime --entitlements "$helper_entitlements" "$app/Contents/MacOS/vamp-plugin-load-checker" Chris@2385: codesign -s "Developer ID Application: Chris Cannam" -fv --deep --options runtime --entitlements "$helper_entitlements" "$app/Contents/MacOS/piper-vamp-simple-server" Chris@2385: codesign -s "Developer ID Application: Chris Cannam" -fv --deep --options runtime --entitlements "$entitlements" "$app" Chris@516: done Chris@516: