From: Martin Jansa Date: Wed, 18 Nov 2009 08:24:44 +0000 (+0100) Subject: bt-gps: new recipe from SHR X-Git-Tag: Release-2010-05/1~1648^2~165 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c24888cefd27937b582594328537afdcfcc15fc5;p=openembedded.git bt-gps: new recipe from SHR --- diff --git a/recipes/bt-gps/bt-gps.bb b/recipes/bt-gps/bt-gps.bb new file mode 100644 index 0000000000..414c37fb80 --- /dev/null +++ b/recipes/bt-gps/bt-gps.bb @@ -0,0 +1,27 @@ +DESCRIPTION = "Turns your Neo Freerunner into a bluetooth GPS" +SECTION = "console/network" +PRIORITY = "optional" +LICENSE = "GPL" +RDEPENDS = "python python-pygtk gps-utils" + +SRC_URI = "http://handheldshell.com/software/fso/btgps.tgz \ + " + +#inherit autotools + +S = ${WORKDIR}/bluetooth + +do_install() { + install -d ${D}/usr/share/applications + install -d ${D}/usr/bin + install -m 0755 ${S}/BtGPS.py ${D}/usr/bin + install -m 0755 ${S}/btgps.desktop ${D}/usr/share/applications +} + +do_configure() { + exit 0 +} + +do_compile() { + exit 0 +}