From c82e88dd00d1b0b7fcfb4e5628d99611388cef6f Mon Sep 17 00:00:00 2001 From: rawnix ports Date: Sat, 26 Sep 2026 18:19:05 +0000 Subject: sync 2026-09-26 18:19 UTC 1672 files changed, 151396 insertions(+) --- opt/tcpdump/MAKEPKG | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 opt/tcpdump/MAKEPKG (limited to 'opt/tcpdump/MAKEPKG') diff --git a/opt/tcpdump/MAKEPKG b/opt/tcpdump/MAKEPKG new file mode 100644 index 0000000..27b0fd1 --- /dev/null +++ b/opt/tcpdump/MAKEPKG @@ -0,0 +1,37 @@ +#!/bin/mkpkg +# description: Command-line network traffic analyzer +# url: https://www.tcpdump.org + +name=tcpdump +version=4.99.7 +release=1 +depends=(libpcap libressl) +capabilities=( + /usr/bin/tcpdump:cap_net_raw+ep +) +source=(https://www.tcpdump.org/release/$name-$version.tar.xz) + +sha256sums=( + "39675dfa06fb0e99be8da5d4a1784acbaab58ae0870231d956ff7870cb99eec1" +) + +build() { + cd $name-$version + + ./configure \ + --prefix=/usr \ + --with-crypto + + make + make DESTDIR=$PKG install + + # remove versioned binary (tcpdump.4.99.6) + rm -f $PKG/usr/bin/tcpdump.* +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh -- cgit v1.3.1