Files
Paul Eggleton 040f75eca2 Drop PRIORITY variable
As discussed on the mailing list, this variable isn't useful and if wanted
would be better implemented by distros using pn-X overrides.

This patch executes:

find . -regex ".*\.\(bb\|inc\)$" | xargs sed -i '/^PRIORITY = ".*"$/d'

against the tree removing the references. Thanks to Phil Blundell for
the command.

(Prompted by oe-core rev: d122343362669c683acc4af295971a62cbc823fc)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2011-07-14 16:49:27 +01:00

34 lines
895 B
PHP

DESCRIPTION = "flite - the festival light speech synthesizer"
HOMEPAGE = "http://www.speech.cs.cmu.edu/flite/"
SECTION = "console/utils"
LICENSE = "flite"
LIC_FILES_CHKSUM = "file://COPYING;md5=68a16b1ee49c96c36f232ccdcd287650"
DEPENDS = "alsa-oss"
PARALLEL_MAKE = ""
S = "${WORKDIR}/flite-${PV}-release"
CFLAGS += " -lasound "
inherit autotools
PACKAGES += "lib${PN} lib${PN}-vox8 lib${PN}-vox16"
FILES_${PN} = "${bindir}"
FILES_lib${PN} ="${libdir}/libflite.so.* \
${libdir}/libflite_cmu_time_awb.so.* \
${libdir}/libflite_cmulex.so.* \
${libdir}/libflite_usenglish.so.*"
FILES_lib${PN}-vox8 = "${libdir}/libflite_cmu_us_kal.so.*"
FILES_lib${PN}-vox16 = "${libdir}/libflite_cmu_us_kal16.so.*"
LEAD_SONAME = "libflite.so"
do_install() {
oe_runmake INSTALLBINDIR="${D}${bindir}" INSTALLLIBDIR="${D}${libdir}" INSTALLINCDIR="${D}${includedir}" install
}