diff options
Diffstat (limited to 'recipes/ghettotooth')
-rw-r--r-- | recipes/ghettotooth/ghettotooth.bb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/recipes/ghettotooth/ghettotooth.bb b/recipes/ghettotooth/ghettotooth.bb new file mode 100644 index 0000000000..426a657848 --- /dev/null +++ b/recipes/ghettotooth/ghettotooth.bb @@ -0,0 +1,15 @@ +SECTION = "network/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}/ +} |