chrysos349
chrysos349
>I'm not sure about this. You missed a rather important bit: all the `*.bdict` dictionaries are generate automatically by `dooble` build system. Modify the template by adding this to `do_install()`...
archlinux has `*.bdic` in `hunspell-` packages: See here - https://gitlab.archlinux.org/archlinux/packaging/packages/hunspell-de/-/blob/main/PKGBUILD?ref_type=heads#L64 ``` # Install webengine dictionaries install -d "$pkgdir"/usr/share/qt{,6}/qtwebengine_dictionaries/ for _file in "$pkgdir"/usr/share/hunspell/*.dic; do _filename=$(basename $_file) /usr/lib/qt6/qwebengine_convert_dict $_file "$pkgdir"/usr/share/qt6/qtwebengine_dictionaries/${_filename/\.dic/\.bdic} ln -rs...
In a similar manner `hunspell-` templates can be modified, e.g. `hunspell-en_US`: ```diff diff --git a/srcpkgs/hunspell-en_US/template b/srcpkgs/hunspell-en_US/template index ce4df5e1a..2d60aa496 100644 --- a/srcpkgs/hunspell-en_US/template +++ b/srcpkgs/hunspell-en_US/template @@ -3,7 +3,7 @@ pkgname=hunspell-en_US version=2020.12.07 revision=1...
you are correct. forgot about those architectures. UPD. What about enabling only when crossbuilding? ```sh if [ "$CROSS_BUILD" ]; then ... fi ```
@Jaymz665 Downgrade to `gtk4-4.12.5`, and see if the problem disappears. It did for me. `gtk4-4.14.1` is buggy, imo. Use the patch below: ```diff --- b/srcpkgs/gtk4/template +++ a/srcpkgs/gtk4/template @@ -1,6 +1,6...
**Updates:** - `folks` --> 0.15.9 - `gcr` --> 3.41.2 - `gcr4` --> 4.3.0 - `gnome-control-center` --> 46.0.1 - `gnome-online-accounts` --> 3.50.1 - `libgweather` --> 4.4.2 - `librsvg` --> 2.58.0 -...
**gnome-tweaks** ```diff diff --git a/srcpkgs/gnome-tweaks/template b/srcpkgs/gnome-tweaks/template index 963940101..9954c5e7f 100644 --- a/srcpkgs/gnome-tweaks/template +++ b/srcpkgs/gnome-tweaks/template @@ -1,17 +1,19 @@ # Template file for 'gnome-tweaks' pkgname=gnome-tweaks -version=45.2 +version=46.0 revision=1 build_style=meson -hostmakedepends="pkg-config gettext" -makedepends="libhandy1-devel"...
i know. gnome-tweaks needs `gsettings-desktop-schemas>= 46.0`. might as well add it here. let @oreo639 decide.