blob: 414c37fb80fe4c700da0ccfbcc121d72bc142cb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
}
|