diff options
Diffstat (limited to 'meta/packages/matchbox-poky/matchbox-poky_0.1.bb')
-rw-r--r-- | meta/packages/matchbox-poky/matchbox-poky_0.1.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta/packages/matchbox-poky/matchbox-poky_0.1.bb b/meta/packages/matchbox-poky/matchbox-poky_0.1.bb new file mode 100644 index 0000000000..041a6ea904 --- /dev/null +++ b/meta/packages/matchbox-poky/matchbox-poky_0.1.bb | |||
@@ -0,0 +1,20 @@ | |||
1 | DESCRIPTION = "Custom MB session files for poky" | ||
2 | LICENSE = "GPL" | ||
3 | SECTION = "x11" | ||
4 | RDEPENDS = "matchbox matchbox-applet-startup-monitor gtk-theme-clearlooks" | ||
5 | PR = "r15" | ||
6 | |||
7 | SRC_URI = "file://etc" | ||
8 | S = ${WORKDIR} | ||
9 | |||
10 | do_install() { | ||
11 | cp -R ${S}/etc ${D}/etc | ||
12 | rm -fR ${D}/etc/.svn | ||
13 | rm -fR ${D}/etc/matchbox/.svn | ||
14 | chmod -R 755 ${D}/etc | ||
15 | } | ||
16 | |||
17 | pkg_postinst_matchbox-poky () { | ||
18 | #!/bin/sh -e | ||
19 | gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults --direct --type string --set /desktop/poky/theme Clearlooks | ||
20 | } | ||