diff options
| author | Martin Jansa <martin.jansa@gmail.com> | 2012-03-14 19:59:19 +0000 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2012-03-16 09:32:25 -0700 |
| commit | 1502c432e6584ec3deceba7de617d47b79830549 (patch) | |
| tree | 6cd4bd273ed93bb966ceb7924deb6ff3bcc8cba3 /meta-efl/recipes-efl/e17/e-tasks_git.bb | |
| parent | 8e7090f0bef0b006b10d80f77687f0929f9b3eb1 (diff) | |
| download | meta-openembedded-1502c432e6584ec3deceba7de617d47b79830549.tar.gz | |
e-tasks: drop local patches and use our github repo instead
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-efl/recipes-efl/e17/e-tasks_git.bb')
| -rw-r--r-- | meta-efl/recipes-efl/e17/e-tasks_git.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-efl/recipes-efl/e17/e-tasks_git.bb b/meta-efl/recipes-efl/e17/e-tasks_git.bb new file mode 100644 index 0000000000..5196f42ab2 --- /dev/null +++ b/meta-efl/recipes-efl/e17/e-tasks_git.bb | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | DESCRIPTION = "e-tasks is a todo program for Openmoko phones" | ||
| 2 | HOMEPAGE = "http://code.google.com/p/e-tasks/" | ||
| 3 | AUTHOR = "cchandel" | ||
| 4 | LICENSE = "GPLv3" | ||
| 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=8f0e2cd40e05189ec81232da84bd6e1a" | ||
| 6 | SECTION = "e/apps" | ||
| 7 | DEPENDS = "elementary eina edbus sqlite3" | ||
| 8 | |||
| 9 | inherit autotools | ||
| 10 | |||
| 11 | SRCREV = "b640f0e7287877983645d9d9a36f85a0b6a54631" | ||
| 12 | PV = "0.0.2+gitr${SRCPV}" | ||
| 13 | |||
| 14 | SRC_URI = "git://github.com/shr-project/e-tasks.git;protocol=git;branch=master \ | ||
| 15 | " | ||
| 16 | S = "${WORKDIR}/git" | ||
| 17 | |||
| 18 | do_install_append() { | ||
| 19 | install -d "${D}/${datadir}/pixmaps" | ||
| 20 | install -m 0644 "${S}/resources/e-tasks.png" "${D}/${datadir}/pixmaps" | ||
| 21 | install -d "${D}/${datadir}/applications" | ||
| 22 | install -m 0644 "${S}/resources/e-tasks.desktop" "${D}/${datadir}/applications" | ||
| 23 | install -d "${D}/${datadir}/e-tasks" | ||
| 24 | for ico in "${S}/resources/"*.png; do | ||
| 25 | if [ "$(basename $ico)" != "e-tasks.png" ]; then | ||
| 26 | install -m 0644 $ico "${D}/${datadir}/e-tasks" | ||
| 27 | fi | ||
| 28 | done | ||
| 29 | } | ||
| 30 | |||
| 31 | FILES_${PN} += "/usr/share/e-tasks/* /usr/share/applications/* /usr/share/pixmaps/*" | ||
