diff options
Diffstat (limited to 'meta-networking/recipes-support/tcpdump/tcpslice_1.8.bb')
-rw-r--r-- | meta-networking/recipes-support/tcpdump/tcpslice_1.8.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/tcpdump/tcpslice_1.8.bb b/meta-networking/recipes-support/tcpdump/tcpslice_1.8.bb new file mode 100644 index 0000000000..3d61160bb0 --- /dev/null +++ b/meta-networking/recipes-support/tcpdump/tcpslice_1.8.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | SUMMARY = "tcpslice" | ||
2 | DESCRIPTION = "A tool for extracting parts of a tcpdump packet trace." | ||
3 | HOMEPAGE = "http://www.tcpdump.org/related.html" | ||
4 | SECTION = "net" | ||
5 | |||
6 | LICENSE = "BSD-4-Clause" | ||
7 | LIC_FILES_CHKSUM = "file://tcpslice.c;endline=20;md5=99519e2e5234d1662a4ce16baa62c64e" | ||
8 | |||
9 | SRC_URI = "http://www.tcpdump.org/release/${BP}.tar.gz \ | ||
10 | " | ||
11 | SRC_URI[sha256sum] = "082967d6bf793499d3d655cea2149e07c0da97287f1877a6eab88d17cb703d0d" | ||
12 | |||
13 | UPSTREAM_CHECK_REGEX = "tcpslice-(?P<pver>\d+(\.\d+)+)\.tar" | ||
14 | |||
15 | inherit autotools-brokensep pkgconfig | ||
16 | |||
17 | DEPENDS = "libpcap" | ||
18 | |||
19 | EXTRA_AUTORECONF += "--exclude=aclocal" | ||
20 | |||
21 | do_install () { | ||
22 | install -d ${D}${sbindir} | ||
23 | install -m 0755 tcpslice ${D}${sbindir} | ||
24 | } | ||