blob: ab1010c48e262a49dcebda9be5f21da47c0951db (
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
41
42
43
|
DESCRIPTION = "Open implementation of motorola's tapisrv, replaces opentapi"
LICENSE = "GPLv2"
SECTION = "devel"
AUTHOR = "Daniel Ribeiro"
PV = "0.0+svnr${SRCREV}"
PR = "r4"
SRC_URI = "svn://svn.openezx.org/trunk/src/userspace/;module=ezxd;proto=http \
file://ezxd.init \
"
inherit update-rc.d
INITSCRIPT_NAME = "ezxd"
INITSCRIPT_PARAMS = "start 00 S ."
S = "${WORKDIR}/${PN}"
CFLAGS_append = " -DDEBUG "
do_configure() {
sed -i -e s:CROSS:CC:g Makefile
}
fakeroot do_install() {
install -d ${D}/dev/input
mknod ${D}/dev/input/uinput c 10 223
install -d ${D}${bindir}
install -m 755 ezxd ${D}${bindir}
install -d ${D}${libdir}/ezxd
install -m 755 *.so ${D}${libdir}/ezxd
install -d ${D}${sysconfdir}/init.d
install -m 0600 ezxd.conf ${D}${sysconfdir}/
install -m 0755 ${WORKDIR}/ezxd.init ${D}${sysconfdir}/init.d/ezxd
}
FILES_${PN} += "/dev"
CONFFILES_${PN} += "${sysconfdir}/ezxd.conf"
|