From 4fcab4f6b4238a76c2b20f3043d6fc21b0bb2979 Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 5 Sep 2022 18:54:01 +0100 Subject: [PATCH] Rename plugin.vst to plugin.bundle as we use it for CLAP now too --- Makefile.plugins.mk | 10 +++++----- .../{plugin.vst => plugin.bundle}/Contents/Info.plist | 0 utils/{plugin.vst => plugin.bundle}/Contents/PkgInfo | 0 .../Contents/Resources/empty.lproj | 0 4 files changed, 5 insertions(+), 5 deletions(-) rename utils/{plugin.vst => plugin.bundle}/Contents/Info.plist (100%) rename utils/{plugin.vst => plugin.bundle}/Contents/PkgInfo (100%) rename utils/{plugin.vst => plugin.bundle}/Contents/Resources/empty.lproj (100%) diff --git a/Makefile.plugins.mk b/Makefile.plugins.mk index 6dcc811c..e2d763ae 100644 --- a/Makefile.plugins.mk +++ b/Makefile.plugins.mk @@ -591,23 +591,23 @@ $(TARGET_DIR)/%.app/Contents/Info.plist: $(DPF_PATH)/utils/plugin.app/Contents/I -@mkdir -p $(shell dirname $@) $(SILENT)sed -e "s/@INFO_PLIST_PROJECT_NAME@/$(NAME)/" $< > $@ -$(TARGET_DIR)/%.vst/Contents/Info.plist: $(DPF_PATH)/utils/plugin.vst/Contents/Info.plist +$(TARGET_DIR)/%.vst/Contents/Info.plist: $(DPF_PATH)/utils/plugin.bundle/Contents/Info.plist -@mkdir -p $(shell dirname $@) $(SILENT)sed -e "s/@INFO_PLIST_PROJECT_NAME@/$(NAME)/" $< > $@ -$(TARGET_DIR)/%.vst3/Contents/Info.plist: $(DPF_PATH)/utils/plugin.vst/Contents/Info.plist +$(TARGET_DIR)/%.vst3/Contents/Info.plist: $(DPF_PATH)/utils/plugin.bundle/Contents/Info.plist -@mkdir -p $(shell dirname $@) $(SILENT)sed -e "s/@INFO_PLIST_PROJECT_NAME@/$(NAME)/" $< > $@ -$(TARGET_DIR)/%.clap/Contents/Info.plist: $(DPF_PATH)/utils/plugin.vst/Contents/Info.plist +$(TARGET_DIR)/%.clap/Contents/Info.plist: $(DPF_PATH)/utils/plugin.bundle/Contents/Info.plist -@mkdir -p $(shell dirname $@) $(SILENT)sed -e "s/@INFO_PLIST_PROJECT_NAME@/$(NAME)/" $< > $@ -$(TARGET_DIR)/%/Contents/PkgInfo: $(DPF_PATH)/utils/plugin.vst/Contents/PkgInfo +$(TARGET_DIR)/%/Contents/PkgInfo: $(DPF_PATH)/utils/plugin.bundle/Contents/PkgInfo -@mkdir -p $(shell dirname $@) $(SILENT)cp $< $@ -$(TARGET_DIR)/%/Resources/empty.lproj: $(DPF_PATH)/utils/plugin.vst/Contents/Resources/empty.lproj +$(TARGET_DIR)/%/Resources/empty.lproj: $(DPF_PATH)/utils/plugin.bundle/Contents/Resources/empty.lproj -@mkdir -p $(shell dirname $@) $(SILENT)cp $< $@ diff --git a/utils/plugin.vst/Contents/Info.plist b/utils/plugin.bundle/Contents/Info.plist similarity index 100% rename from utils/plugin.vst/Contents/Info.plist rename to utils/plugin.bundle/Contents/Info.plist diff --git a/utils/plugin.vst/Contents/PkgInfo b/utils/plugin.bundle/Contents/PkgInfo similarity index 100% rename from utils/plugin.vst/Contents/PkgInfo rename to utils/plugin.bundle/Contents/PkgInfo diff --git a/utils/plugin.vst/Contents/Resources/empty.lproj b/utils/plugin.bundle/Contents/Resources/empty.lproj similarity index 100% rename from utils/plugin.vst/Contents/Resources/empty.lproj rename to utils/plugin.bundle/Contents/Resources/empty.lproj