diff options
| author | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
|---|---|---|
| committer | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
| commit | c82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch) | |
| tree | 56d864b5a5c6c145edd96178ae219a8f90e191a6 /opt/tcpdump/MAKEPKG | |
| download | ports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz | |
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/tcpdump/MAKEPKG')
| -rw-r--r-- | opt/tcpdump/MAKEPKG | 37 |
1 files changed, 37 insertions, 0 deletions
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 |
