diff options
Diffstat (limited to 'matchbox-panel-hacks/matchbox-panel-hacks_0.3-1.oe')
-rw-r--r-- | matchbox-panel-hacks/matchbox-panel-hacks_0.3-1.oe | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/matchbox-panel-hacks/matchbox-panel-hacks_0.3-1.oe b/matchbox-panel-hacks/matchbox-panel-hacks_0.3-1.oe index e69de29bb2..5656678127 100644 --- a/matchbox-panel-hacks/matchbox-panel-hacks_0.3-1.oe +++ b/matchbox-panel-hacks/matchbox-panel-hacks_0.3-1.oe @@ -0,0 +1,16 @@ +DESCRIPTION = "Simple dockapps created with monolaunch and shell script" +DEPENDS = "matchbox xmodmap" +SRC_URI = "file://xrandr-panelapp.sh \ + file://xrandr-panelapp.desktop \ + file://xrandr.png" +SECTION = "gpe" +PRIORITY = "optional" + +do_install() { + install -d ${D}/${bindir} + install -d ${D}/${datadir}/applications + install -d ${D}/${datadir}/pixmaps + install -m 0755 ${WORKDIR}/xrandr-panelapp.sh ${D}/${bindir}/ + install -m 0644 ${WORKDIR}/xrandr-panelapp.desktop ${D}/${datadir}/applications/ + install -m 0644 ${WORKDIR}/xrandr.png ${D}/${datadir}/pixmaps/ +} |