blob: 09349ad79ed91b6d9fe33b4cbce2f46318f90390 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
SECTION = "unknown"
SRC_URI = "http://packetstormsecurity.org/wireless/redfang.2.5.tar.gz \
file://Makefile.patch;patch=1;pnum=0"
DEFAULT_PREFERENCE="-1"
PV="2.5"
CFLAGS_prepend = "-I${STAGING_INCDIR}/bluetooth"
LDFLAGS_prepend = "-L${STAGING_LIBDIR} -lbluetooth -lpthread "
S = "${WORKDIR}/redfang-2.5"
LICENSE = "GPL"
do_compile() {
oe_runmake all
}
do_install() {
install -d ${D}${bindir}
install -m 0755 ${S}/fang ${D}${bindir}
}
|