mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
8 lines
274 B
Bash
Executable file
8 lines
274 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# This step should install tools needed for all packages - OpenSSL, Expat and Unbound
|
|
echo "Updating tools"
|
|
brew update 1>/dev/null
|
|
echo "Installing tools"
|
|
# already installed are: autoconf automake libtool pkg-config
|
|
brew install curl perl 1>/dev/null
|