shithub: opusfile

Download patch

ref: 0704e3bd6dd8bec7252ef34ef4799b478366969f
parent: c7853ce10dd53eb26b32bfc001159c3f718faf2f
author: Ralph Giles <giles@thaumas.net>
date: Sat Jan 15 06:50:11 EST 2022

Brewfile: install the latest CMake

Earlier we had trouble with CMake 3.20, and reverting to 3.16
worked around the problem. However this version is no longer
available in homebrew, so the `brew bundle` step is failing
in github ci. Try installing the latest version instead.

Currently that's CMake 3.22.1.

--- a/Brewfile
+++ b/Brewfile
@@ -5,5 +5,5 @@
 brew 'automake'
 brew 'libtool'
 brew 'pkg-config'
-brew 'cmake@3.16'
+brew 'cmake'
 brew 'doxygen'
--