blob: b737968e7937f11fe919368e5188e604183b0d04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DESCRIPTION = "Bluetooth cellphone information gatherer"
LICENSE = "GPL"
SECTION = "network/misc"
DEPENDS = "bluez-libs"
PV = "0.1"
SRC_URI = "http://www.alighieri.org/tools/bluesnarfer.tar.gz"
S = "${WORKDIR}/bluesnarfer"
LDFLAGS =+ "-lbluetooth"
do_compile() {
oe_runmake bluesnarfer
}
do_install() {
install -d ${D}${bindir}
install -m 0755 ${S}/bluesnarfer ${D}${bindir}
}
|