41 lines
973 B
Bash
41 lines
973 B
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
|
|
# Contributor: Ionut Biru <ibiru@archlinux.org>
|
|
|
|
pkgname=at-spi2-atk
|
|
pkgver=2.38.0
|
|
pkgrel=1.1
|
|
pkgdesc="A GTK+ module that bridges ATK to D-Bus at-spi"
|
|
url="https://wiki.gnome.org/Accessibility"
|
|
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
|
|
license=(LGPL)
|
|
depends=(at-spi2-core libx11 libxml2 atk)
|
|
makedepends=(git meson)
|
|
_commit=b91a111f040a09e804428a81e6de214e4962247b # tags/AT_SPI2_ATK_2_38_0^0
|
|
source=("git+https://gitlab.gnome.org/GNOME/at-spi2-atk.git#commit=$_commit")
|
|
sha256sums=('SKIP')
|
|
|
|
pkgver() {
|
|
cd $pkgname
|
|
git describe --tags | sed 's/^AT_SPI2_ATK_//;s/_/./g;s/-/+/g'
|
|
}
|
|
|
|
prepare() {
|
|
cd $pkgname
|
|
}
|
|
|
|
build() {
|
|
arch-meson $pkgname build
|
|
meson compile -C build
|
|
}
|
|
|
|
check() {
|
|
dbus-run-session meson test -C build --print-errorlogs
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install -C build
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|