mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
fc78d37ff0
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
30 lines
845 B
BlitzBasic
30 lines
845 B
BlitzBasic
SUMMARY = "Flite: a small run-time speech synthesis engine"
|
|
HOMEPAGE = "http://cmuflite.org"
|
|
SECTION = "libs/multimedia"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b3b732d1349633a53e69356607fd2d6c"
|
|
|
|
inherit autotools-brokensep
|
|
|
|
DEPENDS += "alsa-lib chrpath-replacement-native"
|
|
|
|
SRC_URI = "git://github.com/festvox/flite.git;protocol=https;branch=master"
|
|
SRC_URI += "file://0001-Remove-defining-const-as-nothing.patch"
|
|
|
|
SRCREV = "e9e2e37c329dbe98bfeb27a1828ef9a71fa84f88"
|
|
|
|
|
|
EXTRA_OECONF += "--enable-shared"
|
|
|
|
do_configure:append() {
|
|
sed -i '/$(INSTALL) -m 755 $(BINDIR)\/flite_time $(DESTDIR)$(INSTALLBINDIR)/d' ${S}/main/Makefile
|
|
}
|
|
|
|
do_install:append() {
|
|
chown -R root:root ${D}${libdir}/*
|
|
}
|
|
# | make[1]: *** No rule to make target 'flite_voice_list.c', needed by 'all'. Stop.
|
|
PARALLEL_MAKE = ""
|
|
|
|
CLEANBROKEN = "1"
|