aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/msn-cap/msn-cap.bb
blob: 7b8edd5bc90c2643c8f20035fb4448bcb8410aa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
SECTION = "network/misc"
DESCRIPTION = "MSN Messenger sniffer"

SRC_URI = "http://packetstorm.linuxsecurity.com/sniffers/msn-cap.c \
	   file://Makefile"

DEFAULT_PREFERENCE="-1"

LDFLAGS_prepend = "-L${STAGING_LIBDIR} -lpcap "

S = "${WORKDIR}"
LICENSE = "GPL"
do_compile() {
	oe_runmake all
}

do_install() {
	install -d ${D}${bindir}
	install -m 0755 msn-cap ${D}${bindir}/
}