blob: 911c9737148f745aa9f09509411c5c398a55396c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
SECTION = "opie/settings"
DESCRIPTION = "Reload .desktop files on the fly"
PRIORITY = "optional"
MAINTAINER = "Matthias 'CoreDump' Hentges <coredump@handhelds.org>"
LICENSE = "GPL"
PR = "r2"
SRC_URI = "file://icon-reload.desktop \
file://icon-reload.sh \
file://reload.png"
FILES_${PN} += "/opt"
do_install() {
install -d ${D}/opt/QtPalmtop/apps/Settings
install -d ${D}/opt/QtPalmtop/bin
install -d ${D}/opt/QtPalmtop/pics
install -m 0644 ${WORKDIR}/icon-reload.desktop ${D}/opt/QtPalmtop/apps/Settings
install -m 0755 ${WORKDIR}/icon-reload.sh ${D}/opt/QtPalmtop/bin
install -m 0644 ${WORKDIR}/reload.png ${D}/opt/QtPalmtop/pics
}
|