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