Files
chromebrew/packages/libspelling.rb
chromebrew-actions[bot] b7f44296af Add unbuilt gnome_text_editor to updater-gnome_text_editor-49.0 — hunspell_es_us → 25.8.3.2,libspelling → 0.4.9,enchant → 2.8.12,gnome_text_editor → 49.0,gtksourceview_5 → 5.18.0,hunspell,hunspell_base → 1.7.2,hunspell_en_us → 25.8.3.2,hunspell_es_any → 6.4,hunspell_fr_fr → 25.8.3.2 (#13422)
* Add unbuilt gnome_text_editor to updater-gnome_text_editor-49.0

* Add binaries and add deps

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* updater-gnome_text_editor-49.0: Package File Update Run on linux/386 container.

* updater-gnome_text_editor-49.0: Package File Update Run on linux/amd64 container.

* updater-gnome_text_editor-49.0: Package File Update Run on linux/arm/v7 container.

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: satmandu <satmandu@users.noreply.github.com>
Co-authored-by: Satadru Pramanik <satadru@gmail.com>
2025-11-11 22:38:53 +00:00

32 lines
1.0 KiB
Ruby

# Adapted from Arch Linux libspelling PKGBUILD at:
# https://gitlab.archlinux.org/archlinux/packaging/packages/libspelling/-/blob/main/PKGBUILD?ref_type=heads
require 'buildsystems/meson'
class Libspelling < Meson
description 'Spellcheck library for GTK 4'
homepage 'https://gitlab.gnome.org/GNOME/libspelling'
version '0.4.9'
license 'LGPL-2.1-or-later'
compatibility 'aarch64 armv7l x86_64'
source_url 'https://gitlab.gnome.org/GNOME/libspelling.git'
git_hashtag version
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'c65dfe49ae68576c48d8763e0ba7d13b582ed3412afaa7bf5650ce3b734127d8',
armv7l: 'c65dfe49ae68576c48d8763e0ba7d13b582ed3412afaa7bf5650ce3b734127d8',
x86_64: '385f3cb049c16fa88a52b54ae61f73b5fb8167413aab3edee0040d832a6c2d97'
})
depends_on 'enchant' # R
depends_on 'glib' # R
depends_on 'glibc' # R
depends_on 'gtk4' # R
depends_on 'gtksourceview_5' # R
depends_on 'icu4c' # R
depends_on 'pango' # R
meson_options '-D{docs,sysprof}=false -Dintrospection=disabled'
end