Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/libarchive/build/ci/github_actions/install-macos-dependencies.sh
39566 views
1
#!/bin/sh
2
set -eux
3
4
# Uncommenting these adds a full minute to the CI time
5
#brew update > /dev/null
6
#brew upgrade > /dev/null
7
8
# This does an upgrade if the package is already installed
9
brew install \
10
autoconf \
11
automake \
12
libtool \
13
pkg-config \
14
cmake \
15
xz \
16
lz4 \
17
zstd \
18
libxml2 \
19
openssl
20
21