From 0d3b53ddbc42db748b5344e9f2aa98b7da0ea57f Mon Sep 17 00:00:00 2001 From: Paul Date: Sun, 6 Feb 2022 20:28:04 -0500 Subject: [PATCH] Remove com.surge-synth-team to org.surge-synth-team (#5867) Get this early in 1.1. cycle but also radd item to the release checklist to clean up the brew install when we finally ship 1.1 Closes #5785 --- scripts/installer_mac/make_installer.sh | 62 ++++++++++++------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/scripts/installer_mac/make_installer.sh b/scripts/installer_mac/make_installer.sh index 492543aa3b6..981e3574a4a 100755 --- a/scripts/installer_mac/make_installer.sh +++ b/scripts/installer_mac/make_installer.sh @@ -70,36 +70,36 @@ build_flavor() # try to build VST3 package if [[ -d $INDIR/$VST3 ]]; then - build_flavor "VST3" "$VST3" "com.surge-synth-team.surge-xt.vst3.pkg" "/Library/Audio/Plug-Ins/VST3" + build_flavor "VST3" "$VST3" "org.surge-synth-team.surge-xt.vst3.pkg" "/Library/Audio/Plug-Ins/VST3" fi if [[ -d $INDIR/$FXVST3 ]]; then - build_flavor "FXVST3" "$FXVST3" "com.surge-synth-team.surge-xt-fx.vst3.pkg" "/Library/Audio/Plug-Ins/VST3" + build_flavor "FXVST3" "$FXVST3" "org.surge-synth-team.surge-xt-fx.vst3.pkg" "/Library/Audio/Plug-Ins/VST3" fi if [[ -d $INDIR/$AU ]]; then - build_flavor "AU" "$AU" "com.surge-synth-team.surge-xt.component.pkg" "/Library/Audio/Plug-Ins/Components" + build_flavor "AU" "$AU" "org.surge-synth-team.surge-xt.component.pkg" "/Library/Audio/Plug-Ins/Components" fi if [[ -d $INDIR/$FXAU ]]; then - build_flavor "FXAU" "$FXAU" "com.surge-synth-team.surge-xt-fx.component.pkg" "/Library/Audio/Plug-Ins/Components" + build_flavor "FXAU" "$FXAU" "org.surge-synth-team.surge-xt-fx.component.pkg" "/Library/Audio/Plug-Ins/Components" fi if [[ -d $INDIR/$APP ]]; then - build_flavor "APP" "$APP" "com.surge-synth-team.surge-xt.app.pkg" "/tmp/SXT" + build_flavor "APP" "$APP" "org.surge-synth-team.surge-xt.app.pkg" "/tmp/SXT" fi if [[ -d $INDIR/$FXAPP ]]; then - build_flavor "FXAPP" "$FXAPP" "com.surge-synth-team.surge-xt-fx.app.pkg" "/tmp/SXT" + build_flavor "FXAPP" "$FXAPP" "org.surge-synth-team.surge-xt-fx.app.pkg" "/tmp/SXT" fi # Build the resources pagkage RSRCS=${SOURCEDIR}/resources/data echo --- BUILDING Resources pkg --- if [[ ! -z $MAC_INSTALLING_CERT ]]; then - pkgbuild --sign "$MAC_INSTALLING_CERT" --root "$RSRCS" --identifier "com.surge-synth-team.surge-xt.resources.pkg" --version $VERSION --scripts ${SOURCEDIR}/scripts/installer_mac/ResourcesPackageScript --install-location "/tmp/SXT/Surge XT" ${TMPDIR}/Surge_XT_Resources.pkg + pkgbuild --sign "$MAC_INSTALLING_CERT" --root "$RSRCS" --identifier "org.surge-synth-team.surge-xt.resources.pkg" --version $VERSION --scripts ${SOURCEDIR}/scripts/installer_mac/ResourcesPackageScript --install-location "/tmp/SXT/Surge XT" ${TMPDIR}/Surge_XT_Resources.pkg else - pkgbuild --root "$RSRCS" --identifier "com.surge-synth-team.surge-xt.resources.pkg" --version $VERSION --scripts ${SOURCEDIR}/scripts/installer_mac/ResourcesPackageScript --install-location "/tmp/SXT/Surge XT" ${TMPDIR}/Surge_XT_Resources.pkg + pkgbuild --root "$RSRCS" --identifier "org.surge-synth-team.surge-xt.resources.pkg" --version $VERSION --scripts ${SOURCEDIR}/scripts/installer_mac/ResourcesPackageScript --install-location "/tmp/SXT/Surge XT" ${TMPDIR}/Surge_XT_Resources.pkg fi echo --- Sub Packages Created --- @@ -108,35 +108,35 @@ ls -l "${TMPDIR}" # create distribution.xml if [[ -d $INDIR/$VST3 ]]; then - VST3_PKG_REF='' - VST3_CHOICE='' - VST3_CHOICE_DEF="Surge_XT_VST3.pkg" + VST3_PKG_REF='' + VST3_CHOICE='' + VST3_CHOICE_DEF="Surge_XT_VST3.pkg" fi if [[ -d $INDIR/$AU ]]; then - AU_PKG_REF='' - AU_CHOICE='' - AU_CHOICE_DEF="Surge_XT_AU.pkg" + AU_PKG_REF='' + AU_CHOICE='' + AU_CHOICE_DEF="Surge_XT_AU.pkg" fi if [[ -d $INDIR/$APP ]]; then - APP_PKG_REF='' - APP_CHOICE='' - APP_CHOICE_DEF="Surge_XT_APP.pkg" + APP_PKG_REF='' + APP_CHOICE='' + APP_CHOICE_DEF="Surge_XT_APP.pkg" fi if [[ -d $INDIR/$FXVST3 ]]; then - FXVST3_PKG_REF='' - FXVST3_CHOICE='' - FXVST3_CHOICE_DEF="Surge_XT_FXVST3.pkg" + FXVST3_PKG_REF='' + FXVST3_CHOICE='' + FXVST3_CHOICE_DEF="Surge_XT_FXVST3.pkg" fi if [[ -d $INDIR/$FXAU ]]; then - FXAU_PKG_REF='' - FXAU_CHOICE='' - FXAU_CHOICE_DEF="Surge_XT_FXAU.pkg" + FXAU_PKG_REF='' + FXAU_CHOICE='' + FXAU_CHOICE_DEF="Surge_XT_FXAU.pkg" fi if [[ -d $INDIR/$FXAPP ]]; then - FXAPP_PKG_REF='' - FXAPP_CHOICE='' - FXAPP_CHOICE_DEF="Surge_XT_FXAPP.pkg" + FXAPP_PKG_REF='' + FXAPP_CHOICE='' + FXAPP_CHOICE_DEF="Surge_XT_FXAPP.pkg" fi cat > $TMPDIR/distribution.xml << XMLEND @@ -151,7 +151,7 @@ cat > $TMPDIR/distribution.xml << XMLEND ${FXVST3_PKG_REF} ${FXAU_PKG_REF} ${FXAPP_PKG_REF} - + ${VST3_CHOICE} @@ -160,7 +160,7 @@ cat > $TMPDIR/distribution.xml << XMLEND ${FXVST3_CHOICE} ${FXAU_CHOICE} ${FXAPP_CHOICE} - + ${VST3_CHOICE_DEF} ${AU_CHOICE_DEF} @@ -168,10 +168,10 @@ cat > $TMPDIR/distribution.xml << XMLEND ${FXVST3_CHOICE_DEF} ${FXAU_CHOICE_DEF} ${FXAPP_CHOICE_DEF} - - + + - Surge_XT_Resources.pkg + Surge_XT_Resources.pkg XMLEND