From 3b3dc67bbee487ecb4c236a5a540a91d3f0446f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Wed, 21 Aug 2019 02:29:48 +0200 Subject: [PATCH] vice: undo accidental removal of important parts of recipe MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- recipes-emulators/vice/vice_3.3.bb | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/recipes-emulators/vice/vice_3.3.bb b/recipes-emulators/vice/vice_3.3.bb index deec934..ce86ab3 100644 --- a/recipes-emulators/vice/vice_3.3.bb +++ b/recipes-emulators/vice/vice_3.3.bb @@ -53,3 +53,13 @@ EXTRA_OECONF = " \ --without-oss \ --libdir=${libdir} \ " + +do_install_append() { + install -d ${D}/${datadir}/applications + install -m 0644 ${WORKDIR}/vice_64.desktop ${D}/${datadir}/applications + + for size in 16 32 48; do + install -d ${D}/${datadir}/icons/hicolor/${size}x${size}/apps + install -m 0644 ${WORKDIR}/c64_${size}.png ${D}/${datadir}/icons/hicolor/${size}x${size}/apps/c64.png + done +}