New comment by zenny on void-packages repository https://github.com/void-linux/void-packages/issues/26349#issuecomment-731025927 Comment: > Void tries not to merge git packages; do you think they have a chance of doing actual releases? > > Have you tried using this template? As is, it won't work at all, as far as I can tell. I'd recommend using `build_style=scons` for starters, and checking out other templates that use it for a suggested template structure. I tried with the following template to build from the stable repo: ``` # Template file for 'rhvoice' pkgname=rhvoice version=1.2.3 revision=1 wrksrc="RHVoice-${version}" build_style=scons depends="speech-dispatcher libpulseaudio" makedepends="scons portaudio libao" optdepends="'portaudio: for portaudio backend' 'libao: for ao backend'" backup="etc/RHVoice/RHVoice.conf" short_desc="Free and open source speech synthesizer for Russian and other languages" maintainer="/dev/null" license="GPL-3.0-or-later" homepage="https://github.com/Olga-Yakovleva/RHVoice" distfiles="https://github.com/Olga-Yakovleva/RHVoice/archive/${version}.tar.gz" checksum=d104f20dc75fcd133d21751a6e894d34b423e12e4784350b4b9573c727fb71cd build() { cd "$wrksrc/RHVoice-${version}" scons prefix="/usr" sysconfdir="/etc" CPPFLAGS="$CPPFLAGS" CCFLAGS="$CFLAGS" \ LINKFLAGS="$LDFLAGS" } package() { cd "$wrksrc/RHVoice-${version}" mkdir -p "${pkgdir}/usr/lib/speech-dispatcher-modules" scons install DESTDIR="${pkgdir}" prefix="/usr" sysconfdir="/etc" \ CPPFLAGS="$CPPFLAGS" CCFLAGS="$CFLAGS" LINKFLAGS="$LDFLAGS" ln -s "/usr/bin/sd_rhvoice" "${pkgdir}/usr/lib/speech-dispatcher-modules/sd_rhvoice" } ``` It builds the package, but there is no `/usr/bin/sd_rdvoice` found after installation of the package. :( Any input?