aboutsummaryrefslogtreecommitdiffstats
path: root/packages/ezx/opentapi_svn.bb
blob: a617f5b45b43d33b9391a006e76bd2575af986ba (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
DESCRIPTION = "Open implementation of motorola's tapisrc"
LICENSE = "GPLv2"

PV = "0.0+svn${SRCDATE}"

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 = "defaults"


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
}