xref: /freebsd/contrib/libarchive/build/ci/github_actions/install-macos-dependencies.sh (revision df21a004be237a1dccd03c7b47254625eea62fa9)
1#!/bin/sh
2set -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
9brew uninstall cmake
10
11# This does an upgrade if the package is already installed
12brew install \
13	autoconf \
14	automake \
15	libtool \
16	pkg-config \
17	cmake \
18	xz \
19	lz4 \
20	zstd \
21	libxml2 \
22	openssl
23