New comment by jaminW55 on void-packages repository https://github.com/void-linux/void-packages/issues/48155#issuecomment-1891346180 Comment: I've done some work on this template and have it down to a single error: `=> ERROR: Tachidesk-Server-0.7.0_1: cannot find build helper /void-packages/common/build-style/gradle.sh!` This is only my 3rd attempt at package building for Void, so I am not entirely certain the correct approach here. Could someone help verify? Below is the current template. ``` # Template file for `Tachidesk-Server` pkgname=Tachidesk-Server version=0.7.0 revision=1 build_style=gradle hostmakedepends="openjdk8" depends="openjdk8" short_desc="A free and open source manga reader server written in Kotlin" maintainer="Your Name " license="MPL-2.0" homepage="https://github.com/Suwayomi/Tachidesk-Server" distfiles="https://github.com/Suwayomi/Suwayomi-Server/releases/download/v0.7.0/Tachidesk-Server-v0.7.0-r1197-linux-x64.tar.gz" checksum=cc1bc67b387d687a1bbbf4cc10e6437f66aa70c477df1eeaab5eff6cd9569c51 do_install() { vmkdir /usr/share/Tachidesk-Server vcopy build/libs/*.jar /usr/share/Tachidesk-Server # Create a symlink for the executable vln -s /usr/share/Tachidesk-Server/Tachidesk-Server.jar /usr/bin/tachidesk-server } ```