espeak: Add espeak
authorMatthias Hentges <oe@hentges.net>
Fri, 4 Jan 2008 15:25:35 +0000 (15:25 +0000)
committerMatthias Hentges <oe@hentges.net>
Fri, 4 Jan 2008 15:25:35 +0000 (15:25 +0000)
packages/espeak/.mtn2git_empty [new file with mode: 0644]
packages/espeak/espeak_1.30.bb [new file with mode: 0644]

diff --git a/packages/espeak/.mtn2git_empty b/packages/espeak/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/espeak/espeak_1.30.bb b/packages/espeak/espeak_1.30.bb
new file mode 100644 (file)
index 0000000..03290d0
--- /dev/null
@@ -0,0 +1,46 @@
+#! /bin/sh
+#
+# Copyright Matthias Hentges <devel@hentges.net> (c) 2008
+# License: MIT (see http://www.opensource.org/licenses/mit-license.php 
+#               for a copy of the license)
+#
+# Filename: espeak_1.30.bb
+# Date: 20080104 (YMD)
+
+DESCRIPTION = "eSpeak is a compact open source software speech synthesizer"
+SECTION = "base"
+LICENSE = "GPL"
+
+DEPENDS = "portaudio-v19"
+
+######################################################################################
+
+PR = "r0"
+
+SRC_URI = "http://kent.dl.sourceforge.net/sourceforge/espeak/espeak-${PV}-source.zip"
+
+S = "${WORKDIR}/${PN}-${PV}-source"
+
+FILES_${PN} += " /usr/share/espeak-data/ "
+
+do_configure() {
+       # espeak supports portaudio in APIs V18 and V19
+       cp ${S}/src/portaudio19.h ${S}/src/portaudio.h 
+}
+
+do_compile() {
+       cd src
+       oe_runmake
+}
+
+do_install() {
+        install -d ${D}${bindir}
+       install -d ${D}${libdir}
+        install -d ${D}${includedir}
+       install -d ${D}/usr/share/espeak-data
+       
+       install -m 0755 ${S}/src/espeak ${D}${bindir}
+       oe_libinstall -so -C src libespeak ${D}${libdir}
+       
+       cp -prf ${S}/espeak-data/* ${D}/usr/share/espeak-data
+}