diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2009-11-18 09:05:19 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2009-11-18 09:57:15 +0100 |
commit | cf57a5469672d9de0547135a8e325876947802a4 (patch) | |
tree | 63ea7825446ad1709beb6e0300118717907cbf0e /recipes/openmoko-3rdparty | |
parent | d7f99e8b69296d3385017297619f06de4334cfdb (diff) |
advancedcaching: new recipe from SHR
Diffstat (limited to 'recipes/openmoko-3rdparty')
-rw-r--r-- | recipes/openmoko-3rdparty/advancedcaching_git.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/recipes/openmoko-3rdparty/advancedcaching_git.bb b/recipes/openmoko-3rdparty/advancedcaching_git.bb new file mode 100644 index 0000000000..2c2e14c61a --- /dev/null +++ b/recipes/openmoko-3rdparty/advancedcaching_git.bb @@ -0,0 +1,22 @@ +DESCRIPTION = "Advanced Geocaching Tool for Linux - Towards paperless geocaching!" +SECTION = "devel/python" +PRIORITY = "optional" +LICENSE = "GPL" +HOMEPAGE = "http://www.opkg.org/package_268.html" +RDEPENDS = "python-pygtk python-html python-image python-netclient python-misc python-sqlite3 python-mime python-json" +PV = "0.1.2+gitr${SRCPV}" + +SRC_URI = "git://github.com/webhamster/advancedcaching.git;protocol=git;branch=master" + +inherit setuptools + +S = "${WORKDIR}/git/files" + +do_install_append() { + mkdir -p "${D}/${datadir}/pixmaps" + install -m 0644 "${S}/advancedcaching.png" "${D}/${datadir}/pixmaps" + mkdir -p "${D}/${datadir}/applications" + install -m 0644 "${S}/advancedcaching.desktop" "${D}/${datadir}/applications" +} + +FILES_${PN} += "/usr/share/applications/* /usr/share/pixmaps/*" |