blob: 93a4cf2c11b0ad69673597f78fe17536f253de30 (
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
|
# Maintainer: Nick Skelsey <nskelsey+zz@gmail.com>
pkgname=zeek
pkgver=2.6.4
pkgrel=5
pkgdesc="A network analysis framework"
arch=('x86_64')
url="https://www.zeek.org/index.html"
license=('BSD')
depends=("zlib" "libpcap" "bash" "libmaxminddb")
makedepends=("cmake")
source=("git+https://github.com/zeek/zeek")
md5sums=("SKIP")
build() {
cd "$srcdir/zeek"
git submodule update --init --recursive
./configure --disable-auxtools --disable-python --disable-broker-tests --disable-zeekctl
make
}
package() {
cd "$srcdir/zeek"
make DESTDIR="$pkgdir/" install
}
|