aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/slutils/slutils_0.1.0.bb
blob: 8b7d6f6ce9af2e4ad536963a3eb5eaf4f01e6c51 (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
44
45
DESCRIPTION = "Console utilities for certain hardware aspects of Sharp Linux based Zaurii"
DESCRIPTION_slfb = "A command-line utility to turn on/off the FrameBuffer on Linux 2.4-based Zaurii"
DESCRIPTION_slbl = "A command-line utility to control the BackLight on Linux 2.4-based Zaurii"
DESCRIPTION_sltime = "A ustility to save and restore the time on Sharp Linux based Zaurii"
SECTION = "console/utils"
PRIORITY = "optional"
LICENSE = "GPL"
PR = "r4"

inherit qmake update-rc.d

SRC_URI = "file://sltime.sh"

INITSCRIPT_NAME = "sltime"
INITSCRIPT_PARAMS = "defaults 5"

export UTILS = "sltime slbl slfb"

do_fetch() {
	for u in ${UTILS}
	do
		install -d ${S}/$u
		cp -PfR `ls -dp ${FILESDIR}/$u/*|grep -v SCCS` ${S}/$u/
	done
}

do_configure_prepend() {
	cd ${S}/
        printf "TEMPLATE=subdirs\nSUBDIRS=${UTILS}\n" >slutils.pro
}

do_install() {
        install -d ${D}${sbindir}
	for u in ${UTILS}
	do
		install -m 0755 ${S}/${u}/${u} ${D}${sbindir}/
	done
	install -d ${D}${sysconfdir}/init.d/
	install -m 0755 ${WORKDIR}/sltime.sh ${D}${sysconfdir}/init.d/sltime
}

PACKAGES =+ "slbl slfb"
FILES_slbl = "${sbindir}/slbl"
FILES_slfb = "${sbindir}/slfb"