diff options
author | Christian Rüb <christian.rueb@gmx.net> | 2010-02-01 17:51:08 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2010-02-02 01:52:28 +0100 |
commit | e4cff7cf93d6a8e2902395233ccff287afedc5b3 (patch) | |
tree | 65451c8754f5f0c8a048e45d7397e918a4c18443 | |
parent | ad31cefddc85e805305af5763a07f3495cb38bba (diff) |
qgpslog: New recipe for Qt based GPS track logger
* Qt4 based
* uses FSO dbus calls and signals
Signed-off-by: Christian Rüb <christian.rueb@gmx.net>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | recipes/qgpslog/qgpslog_0.2.0.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/recipes/qgpslog/qgpslog_0.2.0.bb b/recipes/qgpslog/qgpslog_0.2.0.bb new file mode 100644 index 0000000000..4635e51e73 --- /dev/null +++ b/recipes/qgpslog/qgpslog_0.2.0.bb @@ -0,0 +1,36 @@ +DESCRIPTION = "QGPSLog" +AUTHOR = "Christian Rüb" +HOMEPAGE = "http://git.senfdax.de/?p=qgpslog;a=summary" +SECTION = "x11/applications" +PRIORITY = "optional" +LICENSE = "GPL QPL PD" +DEPENDS = "librsvg-native" +PR = "r0" + +SRC_URI = "http://openmoko.senfdax.de/sources/${PN}-${PV}.tar.gz;name=archive" + +SRC_URI[archive.md5sum] = "26254f2dafc31260f65a8457ff7eada5" +SRC_URI[archive.sha256sum] = "3f7ef5e1b59f3d75c064d184ff0f91b149c2abfb7e996f70c8f39da8d96383e9" + + +inherit qt4x11 + +do_configure() { + ${OE_QMAKE_QMAKE} +} + +do_compile() { + oe_runmake + oe_runmake -C desktop +} + +do_install() { + install -d ${D}/${datadir}/pixmaps + install ${S}/desktop/${PN}.png ${D}/${datadir}/pixmaps/ + install -d ${D}${bindir} + install -m 0755 ${S}/qgpslog ${D}${bindir} + install -d ${D}/${datadir}/${PN} + install ${S}/styles/shr.style ${D}/${datadir}/${PN}/ + install -d ${D}/${datadir}/applications + install ${S}/desktop/${PN}.desktop ${D}/${datadir}/applications/ +} |