From 96cbf6c89dd2c132ccf2a32f619ce887c706cc19 Mon Sep 17 00:00:00 2001 From: Damien Zammit Date: Sun, 6 Oct 2019 12:08:23 +1100 Subject: WIP au --- Makefile.plugins.mk | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile.plugins.mk b/Makefile.plugins.mk index 4426bcf5..5214079f 100644 --- a/Makefile.plugins.mk +++ b/Makefile.plugins.mk @@ -57,12 +57,12 @@ lv2 = $(TARGET_DIR)/$(NAME).lv2/$(NAME)$(LIB_EXT) lv2_dsp = $(TARGET_DIR)/$(NAME).lv2/$(NAME)_dsp$(LIB_EXT) lv2_ui = $(TARGET_DIR)/$(NAME).lv2/$(NAME)_ui$(LIB_EXT) vst = $(TARGET_DIR)/$(NAME)-vst$(LIB_EXT) -au_plugin = $(TARGET_DIR)/$(NAME).component/Contents/MacOS/$(PLUGIN_NAME) +au_plugin = $(TARGET_DIR)/$(NAME).component/Contents/MacOS/$(NAME) au_pkginfo = $(TARGET_DIR)/$(NAME).component/Contents/PkgInfo au_plist = $(TARGET_DIR)/$(NAME).component/Contents/Info.plist -au_rsrc = $(TARGET_DIR)/$(NAME).component/Contents/Resources/$(PLUGIN_NAME).rsrc -au_ui = $(TARGET_DIR)/$(NAME).component/Contents/Resources/$(PLUGIN_NAME)-CocoaUI.bundle/Contents/MacOS/$(PLUGIN_NAME)-CocoaUI -au_uiplist = $(TARGET_DIR)/$(NAME).component/Contents/Resources/$(PLUGIN_NAME)-CocoaUI.bundle/Contents/Info.plist +au_rsrc = $(TARGET_DIR)/$(NAME).component/Contents/Resources/$(NAME).rsrc +au_ui = $(TARGET_DIR)/$(NAME).component/Contents/Resources/$(NAME)-CocoaUI.bundle/Contents/MacOS/$(NAME)-CocoaUI +au_uiplist = $(TARGET_DIR)/$(NAME).component/Contents/Resources/$(NAME)-CocoaUI.bundle/Contents/Info.plist # --------------------------------------------------------------------------------------------------------------------- # Set stuff needed for AU @@ -342,12 +342,12 @@ $(au_pkginfo): $(au_plist): -@mkdir -p $(shell dirname $@) @echo "Creating AU DSP Info.plist for $(NAME)" - sed -e "s/X-DPF-EXECUTABLE-DPF-X/$(PLUGIN_NAME)/g" $(DPF_PATH)/distrho/src/CoreAudio106/Info.plist > $@ + sed -e "s/X-DPF-EXECUTABLE-DPF-X/$(NAME)/g" $(DPF_PATH)/distrho/src/CoreAudio106/Info.plist > $@ $(au_uiplist): -@mkdir -p $(shell dirname $@) @echo "Creating AU UI Info.plist for $(NAME)" - sed -e "s/X-DPF-EXECUTABLE-DPF-X/$(PLUGIN_NAME)/g" $(DPF_PATH)/distrho/src/CocoaUI/Info.plist > $@ + sed -e "s/X-DPF-EXECUTABLE-DPF-X/$(NAME)/g" $(DPF_PATH)/distrho/src/CocoaUI/Info.plist > $@ $(au_rsrc): $(BUILD_DIR)/step2.rsrc -@mkdir -p $(shell dirname $@) -- cgit v1.2.3