blob: 3b58609e8d85b654c4d2ba9aa0a2fb5cef5ddd01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
}
|