blob: 4f328d84fafd259ec472801c74b83431ca6104f8 (
plain) (
tree)
|
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer:
pkgname=at-spi2-atk
pkgver=2.32.0
pkgrel=0
pkgdesc="GTK+ module to bridge ATK to D-Bus at-spi"
url="https://wiki.linuxfoundation.org/accessibility/d-bus"
arch="all"
options="!check" # Requires dbus daemon running.
license="LGPL-2.0+"
depends=""
depends_dev="atk-dev dbus-dev"
makedepends="$depends_dev at-spi2-core-dev glib-dev intltool libxml2-dev meson
ninja"
subpackages="$pkgname-dev"
source="https://download.gnome.org/sources/at-spi2-atk/${pkgver%.*}/at-spi2-atk-$pkgver.tar.xz"
prepare() {
cd "$builddir"
default_prepare
mkdir _build
}
build() {
cd "$builddir"/_build
meson -Dprefix=/usr
ninja
}
check() {
cd "$builddir"/_build
ninja test
}
package() {
cd "$builddir"/_build
DESTDIR="$pkgdir" ninja install
}
sha512sums="095ceaa33d5b35f1f4f81a31bea00487c054493cb29d4fdbcf74331ec8d1b9570dc7cb93e1cc06da9ea3f5805e7a3a9e7bf80cfdbce86a1822c2a46327109393 at-spi2-atk-2.32.0.tar.xz"
|