diff options
Diffstat (limited to 'packages/ghettotooth/ghettotooth.bb')
-rw-r--r-- | packages/ghettotooth/ghettotooth.bb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/ghettotooth/ghettotooth.bb b/packages/ghettotooth/ghettotooth.bb new file mode 100644 index 0000000000..02bf533e4f --- /dev/null +++ b/packages/ghettotooth/ghettotooth.bb @@ -0,0 +1,16 @@ +SECTION = "net/misc" +DESCRIPTION = "Bluetooth scanner" +MAINTAINER = "Bob Davies <tyggerbob@gmail.com>" +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}/ +} |