blob: 64f7dc1f6aaf064a99c85f223c26ec71f69c4651 (
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
|
DESCRIPTION = "Lightweight At Daemon"
SECTION = "base"
LICENSE = "GPLV2"
PR = "r2"
SRC_URI = "${HANDHELDS_CVS};module=apps/atd;tag=ATD-0_70 \
file://no-oknodo.patch;patch=1"
S = "${WORKDIR}/atd"
inherit update-rc.d
INITSCRIPT_NAME = "atd"
INITSCRIPT_PARAMS = "defaults 97"
do_compile() {
oe_runmake
}
do_install() {
install -d ${D}${sbindir}
install atd ${D}${sbindir}/atd
install -d ${D}${sysconfdir}/init.d
install dist/etc/init.d/atd ${D}${sysconfdir}/init.d/atd
}
|