diff options
Diffstat (limited to 'flite')
-rw-r--r-- | flite/flite-1.2/fix-read-only-assignments.patch | 0 | ||||
-rw-r--r-- | flite/flite_1.2.oe | 21 |
2 files changed, 19 insertions, 2 deletions
diff --git a/flite/flite-1.2/fix-read-only-assignments.patch b/flite/flite-1.2/fix-read-only-assignments.patch new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/flite/flite-1.2/fix-read-only-assignments.patch diff --git a/flite/flite_1.2.oe b/flite/flite_1.2.oe index a62986c6ba..d49a446a83 100644 --- a/flite/flite_1.2.oe +++ b/flite/flite_1.2.oe @@ -2,13 +2,30 @@ HOMEPAGE = "http://fife.speech.cs.cmu.edu/flite/" DESCRIPTION = "festival light speech synthesizer" PRIORITY = "optional" MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" +PR = "r1" -SRC_URI = "http://www.speech.cs.cmu.edu/flite/packed/flite-${PV}/flite-${PV}-release.tar.bz2" +SRC_URI = "http://www.speech.cs.cmu.edu/flite/packed/flite-${PV}/flite-${PV}-release.tar.bz2 \ + file://fix-read-only-assignments.patch;patch=1" S = "${WORKDIR}/flite-${PV}-release" inherit autotools -EXTRA_OECONF = "--enable-shared" +EXTRA_OECONF = "--with-audio=oss --enable-shared" + +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 |