mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
22 lines
695 B
Bash
Executable file
22 lines
695 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "Preparing FreeBSD environment"
|
|
sysctl hw.model hw.machine hw.ncpu
|
|
set -e
|
|
set -x
|
|
|
|
env ASSUME_ALWAYS_YES=YES pkg bootstrap
|
|
pkg install -y bash cppzmq git cmake swig bison python3 base64 flex ccache jq dnsmasq
|
|
pkg upgrade -y curl
|
|
pyver=$(python3 -c 'import sys; print(f"py{sys.version_info[0]}{sys.version_info[1]}")')
|
|
pkg install -y $pyver-sqlite3
|
|
python -m ensurepip --upgrade
|
|
|
|
python -m pip install websockets junit2html
|
|
|
|
# Spicy detects whether it is run from build directory via `/proc`.
|
|
echo "proc /proc procfs rw,noauto 0 0" >>/etc/fstab
|
|
mount /proc
|
|
|
|
# dnsmasq is in /usr/local/sbin and that's not in the PATH by default
|
|
ln -s /usr/local/sbin/dnsmasq /usr/local/bin/dnsmasq
|