mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Add unbuilt at_spi2_core to updater-at_spi2_core-2.58.0 * updater-at_spi2_core-2.58.0: Package File Update Run on linux/amd64 container. * updater-at_spi2_core-2.58.0: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: satmandu <satmandu@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://www.freedesktop.org/wiki/'
|
|
version '2.58.0'
|
|
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: '6fbf63b722790c28d38a3539a718b4b48a6ffc742c9032ec264df5f294f4cd9a',
|
|
armv7l: '6fbf63b722790c28d38a3539a718b4b48a6ffc742c9032ec264df5f294f4cd9a',
|
|
x86_64: '07755ee2ea716c1acbf763e614f851ba98dde3b9470ef70acf7b8f873f78bbf1'
|
|
})
|
|
|
|
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
|