diff --git a/Makefile b/Makefile index afcdc22..92a77cb 100644 --- a/Makefile +++ b/Makefile @@ -25,39 +25,6 @@ endif # -------------------------------------------------------------- -# NOTE: note path must be absolute -MOD_WORKDIR ?= $(HOME)/mod-workdir -MOD_ENVIRONMENT = AR=${1}/host/usr/bin/${2}-gcc-ar CC=${1}/host/usr/bin/${2}-gcc CPP=${1}/host/usr/bin/${2}-cpp CXX=${1}/host/usr/bin/${2}-g++ LD=${1}/host/usr/bin/${2}-ld PKG_CONFIG=${1}/host/usr/bin/pkg-config STRIP=${1}/host/usr/bin/${2}-strip CFLAGS="-I${1}/staging/usr/include" CPPFLAGS= CXXFLAGS="-I${1}/staging/usr/include" LDFLAGS="-L${1}/staging/usr/lib" \ EXE_WRAPPER="qemu-${3}-static -L ${1}/target" - -modduo: - $(MAKE) $(call MOD_ENVIRONMENT,$(MOD_WORKDIR)/modduo,arm-mod-linux-gnueabihf,arm) - -modduox: - $(MAKE) $(call MOD_ENVIRONMENT,$(MOD_WORKDIR)/modduox,aarch64-mod-linux-gnueabi,aarch64) - -moddwarf: - $(MAKE) $(call MOD_ENVIRONMENT,$(MOD_WORKDIR)/moddwarf,aarch64-mod-linux-gnu,aarch64) - -publish: - tar -C bin -cz $(subst bin/,,$(wildcard bin/*.lv2)) | base64 | curl -F 'package=@-' http://192.168.51.1/sdk/install && echo - -ifneq (,$(findstring modduo-,$(MAKECMDGOALS))) -$(MAKECMDGOALS): - $(MAKE) $(call MOD_ENVIRONMENT,$(MOD_WORKDIR)/modduo,arm-mod-linux-gnueabihf,arm) $(subst modduo-,,$(MAKECMDGOALS)) -endif - -ifneq (,$(findstring modduox-,$(MAKECMDGOALS))) -$(MAKECMDGOALS): - $(MAKE) $(call MOD_ENVIRONMENT,$(MOD_WORKDIR)/modduox,aarch64-mod-linux-gnueabi,aarch64) $(subst modduox-,,$(MAKECMDGOALS)) -endif - -ifneq (,$(findstring moddwarf-,$(MAKECMDGOALS))) -$(MAKECMDGOALS): - $(MAKE) $(call MOD_ENVIRONMENT,$(MOD_WORKDIR)/moddwarf,aarch64-mod-linux-gnu,aarch64) $(subst moddwarf-,,$(MAKECMDGOALS)) -endif - -# -------------------------------------------------------------- - clean: $(MAKE) clean -C dpf/utils/lv2-ttl-generator $(MAKE) clean -C plugins/Kars diff --git a/dpf b/dpf index 1aa5892..57fcfca 160000 --- a/dpf +++ b/dpf @@ -1 +1 @@ -Subproject commit 1aa5892a13d7797935964443ae7dda6e08c470cd +Subproject commit 57fcfcaf07f8dced0f643aff46bd0d3bb1b0b476 diff --git a/plugins/Kars/DistrhoPluginInfo.h b/plugins/Kars/DistrhoPluginInfo.h index 7ea4eae..36f3f7d 100644 --- a/plugins/Kars/DistrhoPluginInfo.h +++ b/plugins/Kars/DistrhoPluginInfo.h @@ -17,9 +17,10 @@ #ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED #define DISTRHO_PLUGIN_INFO_H_INCLUDED -#define DISTRHO_PLUGIN_BRAND "DISTRHO" -#define DISTRHO_PLUGIN_NAME "Kars" -#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/Kars" +#define DISTRHO_PLUGIN_BRAND "DISTRHO" +#define DISTRHO_PLUGIN_NAME "Kars" +#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/Kars" +#define DISTRHO_PLUGIN_CLAP_ID "studio.kx.distrho.Kars" #define DISTRHO_PLUGIN_HAS_UI 0 #define DISTRHO_PLUGIN_IS_RT_SAFE 1 diff --git a/plugins/Kars/Makefile b/plugins/Kars/Makefile index 9fab00f..f84b6d4 100644 --- a/plugins/Kars/Makefile +++ b/plugins/Kars/Makefile @@ -23,6 +23,6 @@ include ../../dpf/Makefile.plugins.mk # -------------------------------------------------------------- # Enable all possible plugin types -all: jack dssi_dsp lv2_dsp vst2 vst3 +all: jack dssi_dsp lv2_dsp vst2 vst3 clap # --------------------------------------------------------------