mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* At_spi2_core 2.58.1 => 2.58.2 * update-at_spi2_core: Package File Update Run on linux/amd64 container. * update-at_spi2_core: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: Ed Reel <edreel@gmail.com> Co-authored-by: chromebrew-actions[bot] <220035932+chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
34 lines
1.0 KiB
Ruby
34 lines
1.0 KiB
Ruby
require 'buildsystems/meson'
|
|
|
|
class At_spi2_core < Meson
|
|
description 'This is over DBus, tookit widgets provide their content to screen readers such as Orca'
|
|
homepage 'https://ftp.gnome.org/pub/gnome/sources/at-spi2-core'
|
|
version '2.58.2'
|
|
license 'LGPL-2.1+'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.gnome.org/GNOME/at-spi2-core.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'b4cffc8999101f62ed4e19490e5bd0b26814f07311955c9794cdc125a7a65503',
|
|
armv7l: 'b4cffc8999101f62ed4e19490e5bd0b26814f07311955c9794cdc125a7a65503',
|
|
x86_64: 'a357a709f90d3367e32a23f46d1eda7ffedf8e6d4e2770876fbc13ae2c6da091'
|
|
})
|
|
|
|
depends_on 'dbus' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'gobject_introspection' => :build
|
|
depends_on 'gtk_doc' => :build
|
|
depends_on 'libx11' # R
|
|
depends_on 'libxcb' => :build
|
|
depends_on 'libxext' => :build
|
|
depends_on 'libxfixes' => :build
|
|
depends_on 'libxi' # R
|
|
depends_on 'libxtst' # R
|
|
|
|
gnome
|
|
end
|