mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt at_spi2_core to updater-at_spi2_core-2.58.1 * updater-at_spi2_core-2.58.1: Package File Update Run on linux/amd64 container. * updater-at_spi2_core-2.58.1: Package File Update Run on linux/arm/v7 container. --------- 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.1'
|
|
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: 'ffd11092893681b04c55c6495ea58289480e1cc0bf7b3abe1fe4359aea812fbe',
|
|
armv7l: 'ffd11092893681b04c55c6495ea58289480e1cc0bf7b3abe1fe4359aea812fbe',
|
|
x86_64: 'c29e58a3908f96ad0e31d13b848147d627985bfabed8e86bb56334ce4e88b78a'
|
|
})
|
|
|
|
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
|