speechd: Add speechd for navit (untested)
authorMatthias Hentges <oe@hentges.net>
Tue, 1 Jan 2008 15:57:10 +0000 (15:57 +0000)
committerMatthias Hentges <oe@hentges.net>
Tue, 1 Jan 2008 15:57:10 +0000 (15:57 +0000)
packages/speechd/.mtn2git_empty [new file with mode: 0644]
packages/speechd/speechd_0.56.bb [new file with mode: 0644]

diff --git a/packages/speechd/.mtn2git_empty b/packages/speechd/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/speechd/speechd_0.56.bb b/packages/speechd/speechd_0.56.bb
new file mode 100644 (file)
index 0000000..3b58609
--- /dev/null
@@ -0,0 +1,40 @@
+#! /bin/sh
+#
+# Copyright Matthias Hentges <devel@hentges.net> (c) 2007
+# License: MIT (see http://www.opensource.org/licenses/mit-license.php 
+#               for a copy of the license)
+#
+# Filename: speechd_0.56.bb
+# Date: 20071231 (YMD)
+
+DESCRIPTION = "speechd implements /dev/speech"
+HOMEPAGE = "http://www.speechio.org/"
+SECTION = "base"
+LICENSE = "GPL"
+
+PR = "r0"
+
+######################################################################################
+
+
+SRC_URI = "http://www.speechio.org/dl/speechd-${PV}.tar.gz"
+
+S = "${WORKDIR}/${PN}"
+
+do_compile() {
+       oe_runmake
+}
+
+do_install() {
+       install -d ${D}/bin
+       install -d ${D}/etc
+       install -d ${D}/usr/share/man/man1
+       
+       install -m 0755 ${S}/bin/catspeech ${D}/bin/catspeech
+       install -m 0755 ${S}/bin/speechd ${D}/bin/speechd
+       
+       install -m 0644 ${S}/speechdrc ${D}/etc
+       
+       install -m 0644  ${S}/man/man1/catspeech.1 ${D}/usr/share/man/man1
+       install -m 0644  ${S}/man/man1/speechd.1 ${D}/usr/share/man/man1        
+}