diff options
author | Koen Kooi <k-kooi@ti.com> | 2009-09-14 16:14:59 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-09-14 16:30:19 +0200 |
commit | 05b103fa043460b42b28b84dc61e1c5c8bdfc064 (patch) | |
tree | b91c267e28f65bb728c6ac45bdf5888a4f04ff5c /recipes/julius | |
parent | 517834d5e985ca56c3f840e3bbff145060977b86 (diff) |
julius: add demo files from the TI speechrecognizer demo
Diffstat (limited to 'recipes/julius')
-rw-r--r-- | recipes/julius/ti-julius-demo_r962.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/recipes/julius/ti-julius-demo_r962.bb b/recipes/julius/ti-julius-demo_r962.bb new file mode 100644 index 0000000000..009a986cd4 --- /dev/null +++ b/recipes/julius/ti-julius-demo_r962.bb @@ -0,0 +1,18 @@ +DESCRIPTION = "TI speech recognizer demo" +LICENSE = "GPL" + +RDEPENDS = "julius" +PACKAGE_ARCH = "all" + +SRC_URI = "http://dominion.thruhere.net/koen/OE/ecas-julius_acousticfiles.${PV}.tar.gz" + +S = "${WORKDIR}/julius_acousticfiles.r962" + +do_install() { + rm ${S}/patches -rf + install -d ${D}${datadir}/ti/julius-demo + cp ${S}/* ${D}${datadir}/ti/julius-demo/ +} + +FILES_${PN} = "${datadir}" + |