blob: c19ed49e69f8a4eae29da78b2309517b833e8d48 (
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 = "An Enlightenment theme for gpe-bootsplash"
SECTION = "base"
PRIORITY = "optional"
LICENSE = "GPL"
DEPENDS = "gpe-bootsplash"
RDEPENDS = "gpe-bootsplash"
PR = "r1"
export THEME = "opie"
SRC_URI = "file://*.svg \
file://*${THEME}*logo*"
#FIXME: please use $datadir instead of /usr/share
#FIXME: please use an gpe-bootsplash-theme.inc to reduce duplication
do_install(){
install -d "${D}/usr/share/gpe"
install -m 0644 ${WORKDIR}/splash-${THEME}* ${D}/usr/share/gpe
install -m 0644 ${WORKDIR}/${THEME}-logo.png ${D}/usr/share/gpe
}
pkg_postinst() {
update-alternatives --install /usr/share/gpe/splash-l.svg bootsplash-l /usr/share/gpe/splash-${THEME}-landscape.svg 20
update-alternatives --install /usr/share/gpe/splash-p.svg bootsplash-p /usr/share/gpe/splash-${THEME}-portrait.svg 20
}
pkg_postrm() {
update-alternatives --remove bootsplash-l /usr/share/gpe/splash-${THEME}-landscape.svg
update-alternatives --remove bootsplash-p /usr/share/gpe/splash-${THEME}-portrait.svg
}
FILES_${PN} = "/usr/share/gpe/splash-${THEME}-* \
/usr/share/gpe/${THEME}-logo.png"
|