New comment by lane-brain on void-packages repository https://github.com/void-linux/void-packages/issues/26881#issuecomment-739570627 Comment: compare to my template @harrisonthorne. not ultra polished but close enough for my own use, I used this package to build the distrho plugin pack. ``` # Template file for 'steinberg-vst' pkgname=steinberg-vst version=3.6.14 revision=2 short_desc="Steinberg's VST SDK (version 3.6)" homepage="https://www.steinberg.net/sdk_downloads/" hostmakedepends="unzip" maintainer="lane-brain " _sdkarchive="vst-sdk_3.6.14_build-24_2019-11-29.zip" distfiles="https://download.steinberg.net/sdk_downloads/${_sdkarchive}" wrksrc=${pkgname}-${version} license="custom:Steinberg" checksum=1f61d847d4fbd570a2b3d3cc14210b4e7f808f87b641a44b146a07f708cb1552 repository=nonfree do_extract() { unzip ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${_sdkarchive} } pre_install() { cd ${wrksrc}/VST_SDK cp -r VST2_SDK/* VST3_SDK } do_install() { # install headers local vst_sdk_path="${wrksrc}/VST_SDK/VST3_SDK/public.sdk/source" local header_path="/usr/include/vst36" mkdir -p ${DESTDIR}${header_path} cd ${header_path} vcopy ${vst_sdk_path} ${header_path} mkdir -p ${DESTDIR}${header_path}/pluginterfaces/vst vcopy ${vst_sdk_path}/../../pluginterfaces/vst ${header_path}/pluginterfaces/vst } post_install() { vlicense ${wrksrc}/VST_SDK/VST3_SDK/LICENSE.txt } ```