summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorsynnick2019-06-05 16:13:59 +0200
committersynnick2019-06-05 16:13:59 +0200
commit42f969e56fe8c156ef0247ef29688dd77349b44b (patch)
tree88d8cb04cd61bb3b3c5813154abd51ee0f88787c
parent579e4a292f57826a8832c9fc091900e5b68a1fa0 (diff)
downloadaur-42f969e56fe8c156ef0247ef29688dd77349b44b.tar.gz
Remove parallel build, specify deps indentified by namcap
-rw-r--r--PKGBUILD4
1 files changed, 3 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index dd8d26d67052..8164f8e53219 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,6 +6,8 @@ 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=("https://www.zeek.org/downloads/bro-2.6.2.tar.gz")
sha256sums=("6df6876f3f7b1dd8afeb3d5f88bfb9269f52d5d796258c4414bdd91aa2eac0a6")
@@ -15,7 +17,7 @@ build() {
tar xf $bro_ver.tar.gz
cd "$bro_ver"
./configure --disable-broctl --disable-auxtools --disable-perftools --disable-python --disable-broker-tests
- make -j7
+ make
}
package() {