mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
27 lines
989 B
Ruby
27 lines
989 B
Ruby
# Adapted from Arch Linux pyatspi PKGBUILD at:
|
|
# https://github.com/archlinux/svntogit-packages/raw/packages/pyatspi/trunk/PKGBUILD
|
|
|
|
require 'buildsystems/autotools'
|
|
|
|
class Py3_atspi < Autotools
|
|
description 'Python bindings for D-Bus AT-SPI'
|
|
homepage 'https://wiki.linuxfoundation.org/accessibility/atk/at-spi/at-spi_on_d-bus'
|
|
version '2.46.0'
|
|
license 'GPL2'
|
|
compatibility 'x86_64 aarch64 armv7l'
|
|
source_url 'https://gitlab.gnome.org/GNOME/pyatspi2.git'
|
|
git_hashtag "PYATSPI_#{version.gsub('.', '_')}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'fbe377c1252ee7c0660a0056fcbb0d3dd810dfc1f78fc98046048f10c00d4c75',
|
|
armv7l: 'fbe377c1252ee7c0660a0056fcbb0d3dd810dfc1f78fc98046048f10c00d4c75',
|
|
i686: '4edf9a96a0143e3125f9ea74c8a38295033bef9fa2b9b7393b6cb1875c8caf94',
|
|
x86_64: 'd055212318d6d767727c4ef4b8ce3c8e2e9ebf753136b22d1e4bb0200b66985e'
|
|
})
|
|
|
|
depends_on 'py3_pygobject'
|
|
depends_on 'at_spi2_core'
|
|
depends_on 'python3' => :build
|
|
end
|