My first Working (almost) .mk file but missing title/author/category

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:

image

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))

I didn’t notice before, but the same happens in my shared persistent builds. But for me personally it isn’t that big of a problem as long as the build itself displays the correct names.

OK, it’s just that the text works correctly for me when I process a .pd so maybe it’s not my repo or .mk file but rather the buildroot version of the page is incorrectly formatted.

It will just be a little confusing for people when you share the link for plugin made by of the category. But not that big of a deal I suppose.

I just wanted to make sure there wasn’t anything more I could do at this end to correct it.

DaveM, thank you for confirming this issue.

Yeah, would be nice if it could be fixed though. I’m not sure how it formats the text. You could have a look at the cloud builder source code

Let’s not start talking crazy talk now. :smiley: