mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
16 lines
406 B
Bash
Executable file
16 lines
406 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "Preparing macOS environment"
|
|
sysctl hw.model hw.machine hw.ncpu hw.physicalcpu hw.logicalcpu
|
|
set -e
|
|
set -x
|
|
|
|
brew update
|
|
brew upgrade cmake
|
|
brew install cppzmq openssl@3 swig bison flex ccache libmaxminddb dnsmasq
|
|
|
|
if [ $(sw_vers -productVersion | cut -d '.' -f 1) -lt 14 ]; then
|
|
python3 -m pip install --upgrade pip
|
|
fi
|
|
|
|
python3 -m pip install --user --break-system-packages websockets
|