From 1019f7c5093a813b71a9a836ca42012daf6f4229 Mon Sep 17 00:00:00 2001 From: falkTX Date: Wed, 21 Feb 2024 12:48:39 +0100 Subject: [PATCH] skip hvcc install step, use build only Signed-off-by: falkTX --- Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c41837d..249a5c1 100644 --- a/Makefile +++ b/Makefile @@ -36,13 +36,19 @@ build/%/dpf-widgets: dpf-widgets ln -s $(abspath $<) $@ build/%/Makefile: hvcc/build/bin/hvcc plugins/%/plugin.json plugins/%/plugin.pd - ./hvcc/build/bin/hvcc plugins/$*/plugin.pd -m plugins/$*/plugin.json -n "$(lastword $(subst -, ,$*))" -g dpf -o $(@D) + env PYTHONPATH=$(CURDIR)/hvcc/build/lib \ + python3 ./hvcc/build/lib/hvcc/__init__.py \ + plugins/$*/plugin.pd \ + -m plugins/$*/plugin.json \ + -n "$(lastword $(subst -, ,$*))" \ + -g dpf \ + -o $(@D) dpf/utils/lv2_ttl_generator$(APP_EXT): $(MAKE) -C dpf/utils/lv2-ttl-generator hvcc/build/bin/hvcc: - cd hvcc && python3 setup.py install --no-compile --install-layout unix --prefix $(CURDIR)/hvcc/build + cd hvcc && python3 setup.py build # --------------------------------------------------------------------------------------------------------------------- # cleanup