blob: 6ed2182bd35a16b5caf4d0a134049095e97ea787 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/mkpkg
# description: Trace TCP/UDP sessions and fetch application data from tcpdump logs
# url: https://github.com/brendangregg/Chaosreader
name=chaosreader
version=0.96
release=1
depends=(perl)
source=(https://github.com/brendangregg/Chaosreader/archive/refs/tags/$version.tar.gz)
renames=(chaosreader-$version)
sha256sums=(
"c443795f0f65e51e0577e561a3ae074ad2bdd4a42b89181b28326ccddecd9e32"
)
build() {
install -Dm755 chaosreader-$version $PKG/usr/bin/chaosreader
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|