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.
This commit is contained in:
2026-02-18 11:10:48 -07:00
parent 857c8918d8
commit 590b44946b

View File

@@ -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