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