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
106175 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
# Workaround for cmake in local/pinned tap issue
9
brew uninstall cmake
10
11
# This does an upgrade if the package is already installed
12
brew install \
13
autoconf \
14
automake \
15
libtool \
16
pkg-config \
17
cmake \
18
xz \
19
lz4 \
20
zstd \
21
libxml2 \
22
openssl
23
24