blob: 7426dfe853531aaa3076d467fc971890c6ca54b2 (
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
|
DESCRIPTION = "Open implementation of motorola's tapisrv"
LICENSE = "GPLv2"
SECTION = "devel"
AUTHOR = "Daniel Willmann"
PV = "0.0+svnr${SRCREV}"
PR = "r3"
SRC_URI = "svn://svn.openezx.org/trunk/src/userspace/;module=opentapi;proto=http \
file://opentapi.init \
"
inherit update-rc.d
INITSCRIPT_NAME = "opentapi"
INITSCRIPT_PARAMS = "start 00 S ."
S = "${WORKDIR}/${PN}"
do_install() {
install -d ${D}${bindir}
install -m 755 opentapi ${D}${bindir}
install -d ${D}${sysconfdir}/init.d
install -m 0755 ${WORKDIR}/opentapi.init ${D}${sysconfdir}/init.d/opentapi
}
|