I did my first test with the buildroot Cloud Builder (http://builder.mod.audio/buildroot), but I made a mistake somewhere along the line and I’m not sure how to fix it.
The .mk file uploads, compiles and installs on my Mod Duo. However, in the persistent shareable page, the name of the plugin, the author name and effect type do not appear.
I do not know enough about all of this to figure out what to do next to solve it.
I understand that the text should read “This specific page is meant for Dimension IV by Jim Auge’ with Spatial category.” But instead I get this:

That information does show up in the plugin itself:
The .mk pulls from here: https://github.com/Mondomod/dimensioniv
and it contains the following:
DIMENSIONIV_VERSION = d2f08b4890102182ea333ef1c8dd5dd1d101f539
DIMENSIONIV_SITE = https://github.com/Mondomod/dimensioniv
DIMENSIONIV_SITE_METHOD = git
DIMENSIONIV_DEPENDENCIES = lv2
DIMENSIONIV_BUNDLES = DimensionIV.lv2
define DIMENSIONIV_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/plugin/source \
CC="$(TARGET_CC)" \
CXX="$(TARGET_CXX)" \
AR="$(TARGET_AR)" \
STRIP="$(TARGET_STRIP)" \
CROSS_COMPILING=true \
all
cp -a $(@D)/lv2/. $(@D)/bin/DimensionIV.lv2/
endef
define DIMENSIONIV_INSTALL_TARGET_CMDS
$(INSTALL) -d $(TARGET_DIR)/usr/lib/lv2
cp -a $(@D)/bin/DimensionIV.lv2 \
$(TARGET_DIR)/usr/lib/lv2/
endef
$(eval $(generic-package))
