blob: 65b676fad54d7ac518cf61c79ab72456125ad108 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
require espeak.inc
FILE_PR = "r0"
inherit native
PACKAGES = "${PN}"
FILES_${PN} = "${layout_datadir}"
PACKAGE_ARCH = "${MACHINE_ARCH}"
TARGET_ARCH = "${MACHINE_ARCH}"
do_compile() {
# Fixing byte order of phoneme data files
cd "${S}/platforms/big_endian"
sed -i '/^ *CC *=/d' Makefile
sed -i 's/\(.*BYTE_ORDER\)/#undef BYTE_ORDER\n#define BYTE_ORDER BIG_ENDIAN\n\1/' espeak-phoneme-data.c
oe_runmake
./espeak-phoneme-data "${S}/espeak-data"
cp -f phondata phonindex phontab "${S}/espeak-data"
}
do_install() {
install -d ${D}${layout_datadir}/espeak-data
install -m 0644 ${S}/espeak-data/phon* ${D}${layout_datadir}/espeak-data
}
do_stage() {
:
}
|