Closed issue by harrisonthorne on void-packages repository https://github.com/void-linux/void-packages/issues/24477 Description: I've got a template in progress for this one, but with one major issue. I'm having a hard time copying the font files because the archive/distfiles have directories with spaces in them and I haven't found out yet how to circumvent this. This is the directory structure of the zip file ([from this release](https://github.com/rsms/inter/releases/tag/v3.15)): ![Directory structure of Inter zip file](https://user-images.githubusercontent.com/33523827/91258620-05ca2d00-e72a-11ea-8ea6-929e5bc51c80.png) We're supposed to copy the files from "Inter Desktop" into our font directories. I've tried a number of things to try and solve the whitespace-in-wrksrc problem, but no luck yet. What's the right way to go about this? ``` # Template file for 'font-inter' pkgname=font-inter version=3.15 revision=1 archs="noarch" hostmakedepends="" makedepends="" depends="font-util" short_desc="Typeface specially designed for user interfaces" maintainer="Harrison Thorne " license="OFL-1.1" homepage="https://rsms.me/inter/" distfiles="https://github.com/rsms/inter/releases/download/v${version}/Inter-${version}.zip" checksum=1534288eb599f57acbf2c5ac0010da9495c2ee53116e08d799555c6f8ee22156 wrksrc="Inter Desktop" font_dirs="/usr/share/fonts/Inter/" do_install() { ls vmkdir usr/share/fonts/Inter vcopy * usr/share/fonts/Inter vlicense LICENSE # ??? added in with edit below } ``` Edit: About the `LICENSE` file too, will `wrksrc` then have to be `.`? I'm confused about how all of this will work :P