blob: d4fc63d6b96b94e662e7dd9b6b6c56c0765e9dbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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 = "x11/wm"
PRIORITY = "optional"
PR = "r1"
LICENSE = "MIT"
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/
}
|