New comment by tesfaye on void-packages repository https://github.com/void-linux/void-packages/issues/6684#issuecomment-600269225 Comment: An update. I was able to get jellyfin to build with #20147 and the following template file for jellyfin. ``` `# Template file for 'jellyfin' pkgname=jellyfin version=10.5.0 revision=1 wrksrc="${pkgname}-${version}" create_wrksrc=yes archs="x86_64" build_style=meta makedepends="dotnet-sdk icu-devel libssl47 yarn git" depends="ffmpeg sqlite" short_desc="Free Software Media System " maintainer="Abel Tesfaye " license="GPL-2.0-or-later" homepage="https://jellyfin.readthedocs.io" distfiles=" https://github.com/${pkgname}/${pkgname}/archive/v${version}.tar.gz>${pkgname}-${version}.tar.gz https://github.com/${pkgname}/${pkgname}-web/archive/v${version}.tar.gz>${pkgname}-web-${version}.tar.gz" checksum=" f5631758c2a175ae04bedd6d8f8566b2222b14254261bdf29019ecdffde0dddd e50b280e805469367bedfef41c32070907e191d4a856b92049e6f6fd558e1dea" nopie=yes do_build() { cd jellyfin-web-${version} yarn install #cp -r dist/. ../jellyfin-${version}/MediaBrowser.WebDashboard/jellyfin-web cd ../jellyfin-${version} export DOTNET_CLI_TELEMETRY_OPTOUT=1 export CLR_OPENSSL_VERSION_OVERRIDE=47 dotnet build --configuration Release Jellyfin.Server dotnet publish --configuration Release Jellyfin.Server --output "$PWD"/publish rm -rfv publish/runtimes/{alpine-*,osx*,tizen-*,win*,linux-arm*,linux-musl*} mkdir publish/jellyfin-web cp -rv ../jellyfin-web-${version}/dist/. publish/jellyfin-web rm -rfv Jellyfin.Server/ } do_install() { vmkdir "usr/bin/${pkgname}" #cd ${pkgname}-${version}/publish/ #vcopy . usr/lib/${pkgname} vcopy "${pkgname}-${version}/publish/." "usr/bin/${pkgname}" } ```