blob: 009a986cd420831f993553f4f618270511649de7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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}"
|