Skip to content

Commit 3d5ef78

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

4 files changed

Lines changed: 8 additions & 13 deletions

File tree

Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ plugins: dgl
2121
ifneq ($(CROSS_COMPILING),true)
2222
gen: plugins dpf/utils/lv2_ttl_generator
2323
@$(CURDIR)/dpf/utils/generate-ttl.sh
24-
ifeq ($(MACOS),true)
25-
@$(CURDIR)/dpf/utils/generate-vst-bundles.sh
26-
endif
2724

2825
dpf/utils/lv2_ttl_generator:
2926
$(MAKE) -C dpf/utils/lv2-ttl-generator

dpf

Submodule dpf updated 134 files

plugins/MVerb/DistrhoPluginInfo.h

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* DISTRHO MVerb, a DPF'ied MVerb.
33
* Copyright (c) 2010 Martin Eastwood
4-
* Copyright (C) 2015 Filipe Coelho <falktx@falktx.com>
4+
* Copyright (C) 2015-2022 Filipe Coelho <falktx@falktx.com>
55
*
66
* This program is free software; you can redistribute it and/or
77
* modify it under the terms of the GNU General Public License as
@@ -19,16 +19,18 @@
1919
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
2020
#define DISTRHO_PLUGIN_INFO_H_INCLUDED
2121

22-
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
23-
#define DISTRHO_PLUGIN_NAME "MVerb"
24-
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/MVerb"
22+
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
23+
#define DISTRHO_PLUGIN_NAME "MVerb"
24+
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/MVerb"
25+
#define DISTRHO_PLUGIN_CLAP_ID "studio.kx.distrho.MVerb"
2526

2627
#define DISTRHO_PLUGIN_HAS_UI 1
2728
#define DISTRHO_PLUGIN_IS_RT_SAFE 1
2829
#define DISTRHO_PLUGIN_NUM_INPUTS 2
2930
#define DISTRHO_PLUGIN_NUM_OUTPUTS 2
3031
#define DISTRHO_PLUGIN_WANT_PROGRAMS 1
3132

33+
#define DISTRHO_PLUGIN_CLAP_FEATURES "audio-effect", "reverb", "stereo"
3234
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:ReverbPlugin"
3335
#define DISTRHO_PLUGIN_VST3_CATEGORIES "Fx|Reverb"
3436

plugins/MVerb/Makefile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,7 @@ include ../../dpf/Makefile.plugins.mk
2828
# --------------------------------------------------------------
2929
# Enable all possible plugin types
3030

31-
TARGETS += jack
32-
TARGETS += ladspa
33-
TARGETS += lv2_sep
34-
TARGETS += vst2
35-
TARGETS += vst3
31+
TARGETS = jack ladspa lv2_sep vst2 vst3 clap
3632

3733
ifeq ($(HAVE_DGL),true)
3834
ifeq ($(HAVE_LIBLO),true)

0 commit comments

Comments
 (0)