Mercurial > hg > sonic-visualiser
diff deploy/osx/deploy.sh @ 2265:d33dff02b39b sandbox-notarize
Work on sandboxing (possibly) and using the hardened runtime for notarization. Supply appropriate bundle ID for helpers as well as main application, and request inherited sandbox entitlements. Currently works with sandboxing (apparently) but not yet with the hardened runtime, where we can't load plugins signed by third parties even with the com.apple.security.cs.disable-library-validation entitlement because their team IDs don't match the host. Possibly that exception is supposed to be requested some other way?
author | Chris Cannam |
---|---|
date | Thu, 25 Apr 2019 16:46:02 +0100 |
parents | 23be8dccb855 |
children |
line wrap: on
line diff
--- a/deploy/osx/deploy.sh Thu Apr 25 11:30:27 2019 +0100 +++ b/deploy/osx/deploy.sh Thu Apr 25 16:46:02 2019 +0100 @@ -47,11 +47,11 @@ echo echo "Copying in plugin load checker." -cp checker/vamp-plugin-load-checker "$source"/Contents/MacOS/ +cp checker/vamp-plugin-load-checker "$source"/Contents/Resources/ echo echo "Copying in plugin server." -cp piper-vamp-simple-server "$source"/Contents/MacOS/ +cp piper-vamp-simple-server "$source"/Contents/Resources/ echo echo "Writing version $bundleVersion in to bundle." @@ -104,6 +104,6 @@ echo echo "Signing dmg..." -codesign -s "Developer ID Application: Chris Cannam" -fv "$dmg" +codesign -s "Developer ID Application: Chris Cannam" -fv "$dmg" -i "org.sonicvisualiser.SonicVisualiser" echo "Done"