aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/kerneloops/kerneloops_0.11.bb
blob: 3d530a64ab0367eaa6d8219812de5eee912457b9 (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
DESCRIPTION = "Kernel oops collection utility"
LICENSE = "GPLv2"
DEPENDS = "libnotify dbus gtk+"

SRC_URI = "http://www.kerneloops.org/download/kerneloops-0.11.tar.gz"

do_compile_prepend() {
	sed -i -e 's:gcc:$(CC):g' ${S}/Makefile
}

inherit update-rc.d
INITSCRIPT_NAME = "kerneloops"

do_install() {
	install -d ${D}/${datadir}/applications
	install -d ${D}/${datadir}/icons
	install -d ${D}/${bindir}
	install -d ${D}/${INIT_D_DIR}

	install -m 0755 kerneloops ${D}/${bindir}
	install -m 0755 kerneloops-applet ${D}/${bindir}
	install -m 0644 kerneloops-applet.desktop ${D}/${datadir}/applications
	install -m 0644 icon.png ${D}/${datadir}/icons
	install -m 0755 kerneloops.init ${D}/${INIT_D_DIR}/kerneloops
}

FILES_${PN} += "${datadir}/icons"