New comment by sburris0 on void-packages repository https://github.com/void-linux/void-packages/issues/32497#issuecomment-900537769 Comment: Looks like the Debian package copies two things: 1. `unix/librecad` to `/usr/bin` 2. `unix/resources/plugins/*` to `/usr/lib/librecad` The Void template only does the first. I think the template should contain something like: ```bash # install plugins for plugin in plugins; do vcopy unix/resources/${plugin} usr/lib/librecad/ done ``` though I can't test because `harfbuzz` build is failing for me.