blob: 0492dbd8fe85ccd577044b75dcb62c3d096dd341 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=tcpdump-git
pkgver=4.99.r708.g61d5da84
pkgrel=1
pkgdesc="A powerful command-line packet analyzer"
arch=('i686' 'x86_64')
url="https://www.tcpdump.org/"
license=('BSD')
depends=('glibc' 'libcap-ng' 'libpcap' 'openssl')
makedepends=('git')
provides=("tcpdump=$pkgver")
conflicts=('tcpdump')
source=("git+https://github.com/the-tcpdump-group/tcpdump.git")
sha256sums=('SKIP')
pkgver() {
cd "tcpdump"
git describe --long --tags | sed 's/^tcpdump-//;s/-[a-z]*//;s/\([^-]*-g\)/r\1/;s/[-_]/./g'
}
build() {
cd "tcpdump"
./configure \
--prefix="/usr" \
--sbindir="/usr/bin"
make
}
check() {
cd "tcpdump"
make tests
}
package() {
cd "tcpdump"
make DESTDIR="$pkgdir" install
install -Dm644 "LICENSE" -t "$pkgdir/usr/share/licenses/tcpdump"
}
|