diff options
author | Samuli Piippo <samuli.piippo@gmail.com> | 2022-05-30 12:29:52 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-05-30 22:07:20 -0700 |
commit | b76919201b55fc7b5a4869725ef1ad9f3adcba21 (patch) | |
tree | 37d17e55d5a75deb652e3763cb6264f5fdc14fa2 /meta-multimedia/recipes-multimedia | |
parent | 72cc06a8f4f27d6bfd057db584752ec26a6ebb0e (diff) | |
download | meta-openembedded-b76919201b55fc7b5a4869725ef1ad9f3adcba21.tar.gz |
flite: add recipe
CMU Flite (festival-lite) is a small, fast run-time open source
text to speech synthesis engine developed at CMU and primarily
designed for small embedded machines.
Signed-off-by: Samuli Piippo <samuli.piippo@qt.io>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-multimedia/recipes-multimedia')
-rw-r--r-- | meta-multimedia/recipes-multimedia/flite/flite_2.2.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-multimedia/recipes-multimedia/flite/flite_2.2.bb b/meta-multimedia/recipes-multimedia/flite/flite_2.2.bb new file mode 100644 index 000000000..9ab9c0208 --- /dev/null +++ b/meta-multimedia/recipes-multimedia/flite/flite_2.2.bb | |||
@@ -0,0 +1,19 @@ | |||
1 | SUMMARY = "Flite: a small run-time speech synthesis engine" | ||
2 | HOMEPAGE = "http://cmuflite.org" | ||
3 | SECTION = "libs/multimedia" | ||
4 | LICENSE = "BSD-3-Clause" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=b3b732d1349633a53e69356607fd2d6c" | ||
6 | |||
7 | inherit autotools-brokensep | ||
8 | |||
9 | SRC_URI = "git://github.com/festvox/flite.git;protocol=https;branch=master" | ||
10 | |||
11 | SRCREV = "e9e2e37c329dbe98bfeb27a1828ef9a71fa84f88" | ||
12 | |||
13 | S = "${WORKDIR}/git" | ||
14 | |||
15 | EXTRA_OECONF += "--enable-shared" | ||
16 | |||
17 | do_install:append() { | ||
18 | chown -R root:root ${D}${libdir}/* | ||
19 | } | ||