Skip to content

Commit f64342f

Browse files
committed
Update dpf and enable clap
Signed-off-by: falkTX <falktx@falktx.com>
1 parent dbb60a5 commit f64342f

4 files changed

Lines changed: 6 additions & 38 deletions

File tree

Makefile

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -25,39 +25,6 @@ endif
2525

2626
# --------------------------------------------------------------
2727

28-
# NOTE: note path must be absolute
29-
MOD_WORKDIR ?= $(HOME)/mod-workdir
30-
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"
31-
32-
modduo:
33-
$(MAKE) $(call MOD_ENVIRONMENT,$(MOD_WORKDIR)/modduo,arm-mod-linux-gnueabihf,arm)
34-
35-
modduox:
36-
$(MAKE) $(call MOD_ENVIRONMENT,$(MOD_WORKDIR)/modduox,aarch64-mod-linux-gnueabi,aarch64)
37-
38-
moddwarf:
39-
$(MAKE) $(call MOD_ENVIRONMENT,$(MOD_WORKDIR)/moddwarf,aarch64-mod-linux-gnu,aarch64)
40-
41-
publish:
42-
tar -C bin -cz $(subst bin/,,$(wildcard bin/*.lv2)) | base64 | curl -F 'package=@-' http://192.168.51.1/sdk/install && echo
43-
44-
ifneq (,$(findstring modduo-,$(MAKECMDGOALS)))
45-
$(MAKECMDGOALS):
46-
$(MAKE) $(call MOD_ENVIRONMENT,$(MOD_WORKDIR)/modduo,arm-mod-linux-gnueabihf,arm) $(subst modduo-,,$(MAKECMDGOALS))
47-
endif
48-
49-
ifneq (,$(findstring modduox-,$(MAKECMDGOALS)))
50-
$(MAKECMDGOALS):
51-
$(MAKE) $(call MOD_ENVIRONMENT,$(MOD_WORKDIR)/modduox,aarch64-mod-linux-gnueabi,aarch64) $(subst modduox-,,$(MAKECMDGOALS))
52-
endif
53-
54-
ifneq (,$(findstring moddwarf-,$(MAKECMDGOALS)))
55-
$(MAKECMDGOALS):
56-
$(MAKE) $(call MOD_ENVIRONMENT,$(MOD_WORKDIR)/moddwarf,aarch64-mod-linux-gnu,aarch64) $(subst moddwarf-,,$(MAKECMDGOALS))
57-
endif
58-
59-
# --------------------------------------------------------------
60-
6128
clean:
6229
$(MAKE) clean -C dpf/utils/lv2-ttl-generator
6330
$(MAKE) clean -C plugins/Kars

dpf

Submodule dpf updated 134 files

plugins/Kars/DistrhoPluginInfo.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@
1717
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
1818
#define DISTRHO_PLUGIN_INFO_H_INCLUDED
1919

20-
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
21-
#define DISTRHO_PLUGIN_NAME "Kars"
22-
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/Kars"
20+
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
21+
#define DISTRHO_PLUGIN_NAME "Kars"
22+
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/Kars"
23+
#define DISTRHO_PLUGIN_CLAP_ID "studio.kx.distrho.Kars"
2324

2425
#define DISTRHO_PLUGIN_HAS_UI 0
2526
#define DISTRHO_PLUGIN_IS_RT_SAFE 1

plugins/Kars/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ include ../../dpf/Makefile.plugins.mk
2323
# --------------------------------------------------------------
2424
# Enable all possible plugin types
2525

26-
all: jack dssi_dsp lv2_dsp vst2 vst3
26+
all: jack dssi_dsp lv2_dsp vst2 vst3 clap
2727

2828
# --------------------------------------------------------------

0 commit comments

Comments
 (0)