blob: c26bf31eaaaf982e6feeb8f56377289ee5feac8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
DESCRIPTION = "Raw Glue AP, wireless intrusion detection"
AUTHOR = "Laurent Butti"
HOMEPAGE = "http://rfakeap.tuxfamily.org/#Raw_Glue_AP"
SECTION = "console/network"
PRIORITY = "optional"
LICENSE = "GPLv2"
DEPENDS = "libpcap"
SRC_URI = "http://rfakeap.tuxfamily.org/${P}.tar.gz"
LDFLAGS += "-lpcap"
do_install() {
install -d ${D}/${sbindir}
install -m 0755 rglueap ${D}/${sbindir}
}
|