Mercurial > hg > sonic-visualiser
view deploy/linux/deploy-deb.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 | e0093740b194 |
children |
line wrap: on
line source
#!/bin/bash # # Run this from the build root (with sudo, I think) usage() { echo echo "Usage:" echo echo "$0 <version> <architecture>" echo echo "For example: $0 2.4cc1-1 amd64" echo exit 2 } version="$1" arch="$2" if [ -z "$version" ] || [ -z "$arch" ]; then usage fi set -eu program=sonic-visualiser checker=vamp-plugin-load-checker piper=piper-vamp-simple-server depdir=deploy/linux targetdir="${program}_${version}_${arch}" echo "Target dir is $targetdir" if [ -d "$targetdir" ]; then echo "Target directory exists, not overwriting" exit fi mkdir "$targetdir" cp -r "$depdir"/deb-skeleton/* "$targetdir"/ mkdir -p "$targetdir"/usr/bin "$targetdir"/usr/share/pixmaps cp "$program" "$checker" "$piper" "$targetdir"/usr/bin/ cp icons/sv-icon*.svg "$targetdir"/usr/share/pixmaps/ cp icons/sv-128x128.png "$targetdir"/usr/share/pixmaps/sv-icon.png cp "$program".desktop "$targetdir"/usr/share/applications/ cp README.md "$targetdir"/usr/share/doc/"$program"/ perl -i -p -e "s/Architecture: .*/Architecture: $arch/" "$targetdir"/DEBIAN/control deps=`bash "$depdir"/debian-dependencies.sh "$program"` perl -i -p -e "s/Depends: .*/$deps/" "$targetdir"/DEBIAN/control control_ver=${version%-?} perl -i -p -e "s/Version: .*/Version: $control_ver/" "$targetdir"/DEBIAN/control bash "$depdir"/fix-lintian-bits.sh "$targetdir" dpkg-deb --build "$targetdir" && lintian "$targetdir".deb