From a2d63e7f6b3f98487ce89591a806ce6315bc14dc Mon Sep 17 00:00:00 2001 From: Naoto Yamaguchi Date: Thu, 1 Dec 2016 21:55:30 +0900 Subject: TTS Engine: Added support for Japanese TTS engine This patch will add a temporary TTS engine for CES 2017 demo This recipe integrates the Japanese TTS engine and the data it needs Flite are necessary for voice-guide function of navigation app Change-Id: I92c3ba8584ab10c1a731a335316b7762f5f57a77 Signed-off-by: Naoto Yamaguchi --- recipes-multimedia/openjtalk/openjtalk_1.09.bb | 49 ++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 recipes-multimedia/openjtalk/openjtalk_1.09.bb (limited to 'recipes-multimedia/openjtalk/openjtalk_1.09.bb') diff --git a/recipes-multimedia/openjtalk/openjtalk_1.09.bb b/recipes-multimedia/openjtalk/openjtalk_1.09.bb new file mode 100644 index 00000000..5ac0771a --- /dev/null +++ b/recipes-multimedia/openjtalk/openjtalk_1.09.bb @@ -0,0 +1,49 @@ +SUMMARY = "Open JTalk is a Japanese text-to-speech system." +HOMEPAGE = "http://open-jtalk.sourceforge.net/" +SECTION = "libs" +LICENSE = "BSD" + +LIC_FILES_CHKSUM = "file://COPYING;md5=ec9073c0ca40ff7c388b31cfd6a07a9e" + +BBCLASSEXTEND = "native" + +SRC_URI = "\ + http://downloads.sourceforge.net/open-jtalk/open_jtalk-${PV}.tar.gz \ + file://fix-mecab-tool.patch \ + " + +SRC_URI_class-native = "\ + http://downloads.sourceforge.net/open-jtalk/open_jtalk-${PV}.tar.gz \ + " + + +SRC_URI[md5sum] = "5dfdbad432d892f044fb96129a524bfe" +SRC_URI[sha256sum] = "8ed79238d825fee1d9e0a1c6c8a89e2cc707189be1caa3fa79e8eb72436079d7" + +DEPENDS = " hts-engine openjtalk-native " +DEPENDS_class-native = " hts-engine-native " + +RDEPENDS_${PN} = " openjtalk-voicedata " +RDEPENDS_${PN}_class-native = " " + +inherit autotools-brokensep + +S = "${WORKDIR}/open_jtalk-${PV}" + + +EXTRA_OECONF = " \ + --with-hts-engine-header-path=${PKG_CONFIG_SYSROOT_DIR}/usr/include \ + --with-hts-engine-library-path=${PKG_CONFIG_SYSROOT_DIR}/usr/lib \ +" + +EXTRA_OECONF_class-native = " \ + --with-hts-engine-header-path=${includedir} \ + --with-hts-engine-library-path=${libdir} \ +" + +do_install_append_class-native() { + install -m 755 mecab/src/mecab-dict-index ${D}${bindir} +} + +FILES_${PN} += " ${datadir}/dic/* " + -- cgit 1.2.3-korg