speech-dispatcher: fix included version string

This fixes the version pkg-config file and resolves #26348,
as mumble asks pkg-config for --atleast-version=0.8 and
without a version it won't find the system speech-dispatcher.
This commit is contained in:
Duncaen 2020-11-13 12:53:28 +01:00
parent 4c80bd20f4
commit 054b3e11f2
No known key found for this signature in database
GPG key ID: 335C1D17EC3D6E35

View file

@ -1,7 +1,7 @@
# Template file for 'speech-dispatcher'
pkgname=speech-dispatcher
version=0.10.1
revision=1
revision=2
wrksrc="speechd-${version}"
build_style=gnu-configure
# Disable support for sundry non-free TTS systems (said support causes
@ -26,6 +26,11 @@ conf_files="
CFLAGS="-fcommon"
post_extract() {
[ -e ".tarball-version" ] || echo "${version}" >.tarball-version
[ -e ".version" ] || echo "${version}" >.version
}
pre_configure() {
autoreconf -fi
}