From 590b44946ba46bd27124adbbc7800ff997cddb4f Mon Sep 17 00:00:00 2001 From: deepend Date: Wed, 18 Feb 2026 11:10:48 -0700 Subject: [PATCH] Updated the macOS GitHub Actions workflow to install enchant instead of the removed enchant-applespell Homebrew formula in the dependency step, which addresses the reported brew failure. Updated the bundling step to resolve ENCHANT_PREFIX from brew --prefix enchant so packaging remains aligned with the installed formula. --- .github/workflows/macos-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos-build.yml b/.github/workflows/macos-build.yml index 0371857a..8d5f975e 100644 --- a/.github/workflows/macos-build.yml +++ b/.github/workflows/macos-build.yml @@ -25,7 +25,7 @@ jobs: meson ninja pkg-config gettext perl \ gtk+3 gdk-pixbuf pango adwaita-icon-theme \ hicolor-icon-theme glib dbus \ - enchant-applespell gtk-mac-bundler + enchant gtk-mac-bundler - name: Configure run: | @@ -55,7 +55,7 @@ jobs: set -eux VERSION="$(git describe --tags --always)" PREFIX="$(brew --prefix)" - ENCHANT_PREFIX="$(brew --prefix enchant-applespell)" + ENCHANT_PREFIX="$(brew --prefix enchant)" sed "s/@VERSION@/${VERSION}/g" osx/Info.plist.in > osx/Info.plist