blob: 68bfd8a347f3debf74f9427119c9d817cd36c85a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
DESCRIPTION = " Speech Dispatcher is a high-level device independent layer \
for speech synthesis through a simple, stable and well documented interface."
HOMEPAGE = "http://www.freebsoft.org/speechd/"
LICENSE = "GPLv2"
DEPENDS = "flite libdotconf glib-2.0"
RPROVIDES += "speechd"
PR = "r1"
inherit autotools
SRC_URI = "http://www.freebsoft.org/pub/projects/speechd/${PN}-${PV}.tar.gz \
file://srcMakefile.am.patch;patch=1 \
file://confSpeechd.conf_00.patch;patch=1"
LEAD_SONAME = "libspeechd.so"
do_install() {
install -d ${D}${bindir}
install -d ${D}${includedir}
install -d ${D}${libdir}/${PN}-modules
install -d ${D}${sysconfdir}
install -d ${D}${sysconfdir}/modules
oe_libinstall -so -C src/audio libsdaudio ${D}${libdir}
oe_libinstall -so -C src/c/api libspeechd ${D}${libdir}
install -m 0644 ${S}/src/c/api/libspeechd.h ${D}${includedir}
install -m 0755 ${S}/src/c/clients/say/.libs/spd-say ${D}${bindir}
install -m 0755 ${S}/src/c/clients/spdsend/spdsend ${D}${bindir}
install -m 0755 ${S}/src/server/.libs/speech-dispatcher ${D}${bindir}
install -m 0755 ${S}/src/modules/.libs/sd_* ${D}${libdir}/${PN}-modules/
install -m 0644 ${S}/config/speechd.conf ${D}${sysconfdir}
install -m 0644 ${S}/config/modules/*.conf ${D}${sysconfdir}/modules
}
do_stage() {
install -m 0644 ${S}/src/c/api/libspeechd.h ${STAGING_INCDIR}
oe_libinstall -so -C src/c/api libspeechd ${STAGING_LIBDIR}
}
FILES_${PN} += "${libdir}/${PN}-modules/*"
|