diff options
-rw-r--r-- | gpe-bootsplash/gpe-bootsplash_1.9.oe | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gpe-bootsplash/gpe-bootsplash_1.9.oe b/gpe-bootsplash/gpe-bootsplash_1.9.oe index e69de29bb2..f5c33de085 100644 --- a/gpe-bootsplash/gpe-bootsplash_1.9.oe +++ b/gpe-bootsplash/gpe-bootsplash_1.9.oe @@ -0,0 +1,17 @@ +inherit gpe + +DEPENDS = "gtk+ librsvg" +MAINTAINER = "Phil Blundell <pb@handhelds.org>" +SECTION = "gpe" +PRIORITY = "optional" + +SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz \ + file://splash-p.svg file://splash-l.svg" + +FILES_${PN} += "${datadir}/gpe" + +do_install_append() { + install -m 0644 ${WORKDIR}/splash-p.svg ${D}${datadir}/gpe/splash-p.svg + install -m 0644 ${WORKDIR}/splash-l.svg ${D}${datadir}/gpe/splash-l.svg +} + |