Files
meta-openembedded/meta-efl/recipes-efl/e17/e-tasks_svn.bb
Koen Kooi 7d995c58b1 meta-efl: import from meta-shr.
Not all dependencies are in yet e.g. eve is missing webkit-efl, but e-wm should build

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-03-23 18:15:03 +01:00

33 lines
1.1 KiB
BlitzBasic

DESCRIPTION = "e-tasks is a todo program for Openmoko phones"
HOMEPAGE = "http://code.google.com/p/e-tasks/"
AUTHOR = "cchandel"
LICENSE = "GPLv2"
SECTION = "e/apps"
DEPENDS = "elementary eina edbus sqlite3"
inherit autotools
SRCREV = "25"
PV = "0.0.1+svnr${SRCPV}"
PR = "r9"
SRC_URI = "svn://e-tasks.googlecode.com/svn;module=trunk;proto=http \
file://genlist_item_insert_before.api.patch \
file://depends.eina.patch"
S = "${WORKDIR}/trunk"
do_install_append() {
install -d "${D}/${datadir}/pixmaps"
install -m 0644 "${S}/resources/e-tasks.png" "${D}/${datadir}/pixmaps"
install -d "${D}/${datadir}/applications"
install -m 0644 "${S}/resources/e-tasks.desktop" "${D}/${datadir}/applications"
install -d "${D}/${datadir}/e-tasks"
for ico in "${S}/resources/"*.png; do
if [ "$(basename $ico)" != "e-tasks.png" ]; then
install -m 0644 $ico "${D}/${datadir}/e-tasks"
fi
done
}
FILES_${PN} += "/usr/share/e-tasks/* /usr/share/applications/* /usr/share/pixmaps/*"