blob: 084f2698f255229001fffd2579ae356c0b71f824 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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}"
SRC_URI[md5sum] = "406df5cd8ffa096bdb51466691e16b82"
SRC_URI[sha256sum] = "56cba0e065cdbc11dc74e379af9082b0f8a771ec5984733408c21163a8bea588"
|