diff options
author | Stanislav Brabec <utx@penguin.cz> | 2009-09-22 23:36:32 +0000 |
---|---|---|
committer | utx@penguin.cz <utx@penguin.cz> | 2009-09-22 23:36:32 +0000 |
commit | 3bcf3726467d678126952436b80f4a10c2184c4d (patch) | |
tree | dec42459f0732cb88b54aac55afd7ac8431d5c4e /recipes/matchbox2/matchbox2_2.0.bb | |
parent | 1e4dc820bb189c367daddd07643c0146122823c0 (diff) |
matchbox2: Make it working:
* fixed known crashers
* created usable icon theme
* provided session script
Diffstat (limited to 'recipes/matchbox2/matchbox2_2.0.bb')
-rw-r--r-- | recipes/matchbox2/matchbox2_2.0.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/recipes/matchbox2/matchbox2_2.0.bb b/recipes/matchbox2/matchbox2_2.0.bb new file mode 100644 index 0000000000..1762ff4766 --- /dev/null +++ b/recipes/matchbox2/matchbox2_2.0.bb @@ -0,0 +1,29 @@ +DESCRIPTION = "Metapackage for Matchbox2 suite" +LICENSE = "GPL" +DEPENDS = "matchbox-wm-2 matchbox-panel-2 matchbox-desktop-2" +RDEPENDS = "matchbox-wm-2 matchbox-panel-2 matchbox-desktop-2" +SECTION = "x11/wm" +PR = "r0" + +SRC_URI = "file://matchbox-session-2.in \ + file://defaults.in \ +" +inherit update-alternatives + +ALTERNATIVE_NAME = "x-window-manager" +ALTERNATIVE_LINK = "${bindir}/x-window-manager" +ALTERNATIVE_PATH = "${bindir}/matchbox-session-2" +ALTERNATIVE_PRIORITY = "20" + +do_compile() { + sed "s:@datadir@:${datadir}:g;s:@sysconfdir@:${sysconfdir}:g" <${WORKDIR}/matchbox-session-2.in >matchbox-session-2 + sed "s:@datadir@:${datadir}:g;s:@sysconfdir@:${sysconfdir}:g" <${WORKDIR}/defaults.in >defaults +} + +do_install() { + mkdir -p ${D}${bindir} ${D}${sysconfdir}/matchbox2 + install -m 0755 matchbox-session-2 ${D}${bindir} + install -m 0644 defaults ${D}${sysconfdir}/matchbox2 +} + +FILES_${PN} += "${sysconfdir}/matchbox2" |