summaryrefslogtreecommitdiffstats
path: root/meta/packages/oh/qemu-config.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/oh/qemu-config.bb')
-rw-r--r--meta/packages/oh/qemu-config.bb12
1 files changed, 10 insertions, 2 deletions
diff --git a/meta/packages/oh/qemu-config.bb b/meta/packages/oh/qemu-config.bb
index 299aea2a76..d7c401eb2e 100644
--- a/meta/packages/oh/qemu-config.bb
+++ b/meta/packages/oh/qemu-config.bb
@@ -1,11 +1,13 @@
1DESCRIPTION = "Adds scripts to use distcc on the host system under qemu" 1DESCRIPTION = "Adds scripts to use distcc on the host system under qemu"
2LICENSE = "GPL" 2LICENSE = "GPL"
3RDEPENDS = "distcc task-poky-nfs-server fakeroot" 3RDEPENDS = "distcc task-poky-nfs-server fakeroot"
4PR = "r5" 4PR = "r6"
5 5
6SRC_URI = "file://distcc.sh \ 6SRC_URI = "file://distcc.sh \
7 file://anjuta-remote-run \ 7 file://anjuta-remote-run \
8 file://exports" 8 file://exports \
9 file://shutdown.desktop \
10 file://shutdown.png"
9 11
10S = "${WORKDIR}" 12S = "${WORKDIR}"
11 13
@@ -20,4 +22,10 @@ do_install() {
20 22
21 install -d ${D}${bindir} 23 install -d ${D}${bindir}
22 install -m 0755 anjuta-remote-run ${D}${bindir}/ 24 install -m 0755 anjuta-remote-run ${D}${bindir}/
25
26 install -d ${D}${datadir}/applications
27 install -m 0644 shutdown.desktop ${D}${datadir}/applications/
28
29 install -d ${D}${datadir}/pixmaps
30 install -m 0644 shutdown.png ${D}${datadir}/pixmaps/
23} 31}