diff options
Diffstat (limited to 'recipes/shr/shr-launcher_svn.bb')
-rw-r--r-- | recipes/shr/shr-launcher_svn.bb | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/recipes/shr/shr-launcher_svn.bb b/recipes/shr/shr-launcher_svn.bb index ffd6161586..807d3a2cea 100644 --- a/recipes/shr/shr-launcher_svn.bb +++ b/recipes/shr/shr-launcher_svn.bb @@ -6,16 +6,31 @@ SECTION = "e/apps" DEPENDS = "elementary eina edbus" PV = "0.0.1+svnr${SRCPV}" -PR = "r0" +PR = "r4" SRC_URI = "svn://shr-launcher.googlecode.com/svn/trunk;module=.;proto=http" do_configure_prepend() { - rm -f ${S}/config.log - rm -f ${S}/config.status + # all links to /usr/share/automake-1.10/ + rm -f ${S}/depcomp ${S}/config.guess ${S}/config.sub ${S}/INSTALL ${S}/install-sh ${S}/missing + touch ${S}/INSTALL } S = "${WORKDIR}" inherit autotools +do_install_append() { + install -d "${D}/${datadir}/pixmaps" + install -m 0644 "${S}/resources/launcher.png" "${D}/${datadir}/pixmaps" + install -d "${D}/${datadir}/applications" + install -m 0644 "${S}/resources/launcher.desktop" "${D}/${datadir}/applications" + install -d "${D}/${datadir}/launcher" + for ico in "${S}/resources/"*.png; do + if [ "$(basename $ico)" != "launcher.png" ]; then + install -m 0644 $ico "${D}/${datadir}/launcher" + fi + done +} + +FILES_${PN} += "/usr/share/launcher/* /usr/share/applications/* /usr/share/pixmaps/*" |