diff options
Diffstat (limited to 'recipes/gpe-themes/gpe-theme-e17_0.1.bb')
-rw-r--r-- | recipes/gpe-themes/gpe-theme-e17_0.1.bb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/recipes/gpe-themes/gpe-theme-e17_0.1.bb b/recipes/gpe-themes/gpe-theme-e17_0.1.bb new file mode 100644 index 0000000000..a6d36a5ac0 --- /dev/null +++ b/recipes/gpe-themes/gpe-theme-e17_0.1.bb @@ -0,0 +1,16 @@ +DESCRIPTION = "GTK+ enlightenment theme adjusted for GPE" +LICENSE = "MIT + GPL" +PR = "r0" + +#it doesn't really depends on it, but it's nice to make OE build it +RDEPENDS = "gtk+" + +FILES_${PN} = "${datadir}/themes/" +SRC_URI = "http://linuxtogo.org/~koen/gpe/themes/${P}.tar.gz" + +do_install() { +install -d ${D}${datadir}/themes/ +cp -R ${WORKDIR}/usr/share/themes/e17-bling/ ${D}${datadir}/themes/ +} + + |