mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-21 07:10:43 -05:00
8 lines
248 B
Bash
8 lines
248 B
Bash
|
|
#!/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"
|
||
|
|
brew install autoconf automake libtool pkgconfig curl perl 1>/dev/null
|