blob: 413d81a819133731745b90949cd1c6ccc62a84de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
SECTION = "net/misc"
DESCRIPTION = "Bluetooth scanner"
LICENSE = "GPL"
RDEPENDS = "perl"
SRC_URI = "http://www.wardriving.ch/hpneu/blue/perl/ghettotooth.pl"
DEFAULT_PREFERENCE="-1"
S = "${WORKDIR}"
do_install() {
install -d ${D}${bindir}
install -m 0755 ghettotooth.pl ${D}${bindir}/
}
|