aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/shr/shr-splash_git.bb
blob: 42a13ab2b9f826431593d660279b0c673524629b (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
DESCRIPTION = "SHR splash screen"
SECTION = "x11/data"
LICENSE = "MIT BSD"
SRCREV = "0375bf2b66a053dd490774004c56b5d949f02ac8"
PV = "1.2+gitr${SRCPV}"
PR = "r6"
DEPENDS = "virtual/shr-splash-theme"
RRECOMMENDS_${PN} = "virtual/shr-splash-theme"

inherit update-rc.d

SRC_URI = "git://git.shr-project.org/repo/shr.git;protocol=http;branch=master"

S = "${WORKDIR}/git/${PN}"

FILES_${PN} = "${datadir}/shr-splash \
	       ${sysconfdir}/init.d/shr-splash.sh \
"

do_install() {
    install -d ${D}${datadir}/shr-splash
    install -d ${D}${datadir}/shr-splash/themes
    install -d ${D}${sysconfdir}/init.d

    install -m 0755 ${S}/shr-splash.sh        ${D}${sysconfdir}/init.d/shr-splash.sh

}

pkg_postinst() {
    [ -e ${datadir}/pixmaps/xsplash-vga.ppm ] || ln -s ${datadir}/shr-splash/theme/xsplash-vga.ppm ${datadir}/pixmaps/xsplash-vga.ppm
}


INITSCRIPT_NAME = "shr-splash.sh"
INITSCRIPT_PARAMS = "start 01 S . stop 21 0 1 6 ."