From 2f626d8733ea26b4299aef20e333f47759624fc5 Mon Sep 17 00:00:00 2001 From: falkTX Date: Wed, 2 Feb 2022 18:14:23 +0000 Subject: [PATCH] Fix missing resources Signed-off-by: falkTX --- doc/LICENSES.md | 2 +- plugins/Makefile | 25 +++++++++++++++++++++---- 2 files changed, 22 insertions(+), 5 deletions(-) diff --git a/doc/LICENSES.md b/doc/LICENSES.md index af6ec5c..783f4cc 100644 --- a/doc/LICENSES.md +++ b/doc/LICENSES.md @@ -90,7 +90,7 @@ Below is a list of artwork licenses from plugins | Autinn/* | GPL-3.0-or-later | No artwork specific license provided | | BaconPlugs/* | GPL-3.0-or-later | No artwork specific license provided | | BaconPlugs/midi/* | CC-BY-SA-3.0-DE | | -| BaconPlugs/midi/beeth/* | ??? | Taken from http://www.jsbach.net/ | +| BaconPlugs/midi/beeth/* | ??? | Unused in Cardinal, taken from http://www.jsbach.net/ | | BaconPlugs/1f953.svg | CC-BY-4.0 | | | BaconPlugs/Keypunch029.json | OFL-1.1 | | | Bidoo/* | CC-BY-NC-ND-4.0 | [Special permission granted for runtime dark mode](https://github.com/sebastien-bouffier/Bidoo/issues/191) | diff --git a/plugins/Makefile b/plugins/Makefile index b165b88..5cccc98 100644 --- a/plugins/Makefile +++ b/plugins/Makefile @@ -828,11 +828,28 @@ else PLUGIN_LIST = $(subst /plugin.json,,$(wildcard */plugin.json)) endif +UNWANTED_FILES = HetrickCV/res/illustrator - deprecated/MyModule.svg + RESOURCE_FILES = \ - $(wildcard */presets) \ - $(wildcard */res/*.svg) \ - $(filter-out HetrickCV/res/illustrator - deprecated/MyModule.svg,$(wildcard */res/*/*.svg)) \ - $(wildcard */res/*.ttf) $(wildcard */res/*/*.ttf) + $(filter-out $(UNWANTED_FILES), \ + $(wildcard */res/*.svg) \ + $(wildcard */res/*/*.svg) \ + $(wildcard */res/*/*/*.svg) \ + $(wildcard */res/*.ttf) \ + $(wildcard */res/*/*.ttf) \ + $(wildcard */res/*/*/*.ttf)) + +RESOURCE_FILES += $(wildcard */presets) +RESOURCE_FILES += BaconPlugs/res/Keypunch029.json +RESOURCE_FILES += BaconPlugs/res/midi/chopin +RESOURCE_FILES += BaconPlugs/res/midi/debussy +RESOURCE_FILES += BaconPlugs/res/midi/goldberg +RESOURCE_FILES += Cardinal/res/Miku/Miku.png +RESOURCE_FILES += DrumKit/res/samples +RESOURCE_FILES += MindMeldModular/res/ShapeMaster/CommunityPresets +RESOURCE_FILES += MindMeldModular/res/ShapeMaster/CommunityShapes +RESOURCE_FILES += MindMeldModular/res/ShapeMaster/MindMeldPresets +RESOURCE_FILES += MindMeldModular/res/ShapeMaster/MindMeldShapes PLUGIN_RESOURCES = PLUGIN_RESOURCES += $(PLUGIN_LIST:%=../bin/CardinalFX.lv2/resources/PluginManifests/%.json)