blob: fce9a73265c0c301f56e351a70b76aabbd3b1923 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
DESCRIPTION = "Lightweight At Daemon"
SECTION = "base"
LICENSE = "GPLV2"
PR = "r1"
SRC_URI = "${HANDHELDS_CVS};module=apps/atd;tag=ATD-0_70"
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
}
|