28 lines
796 B
Bash
28 lines
796 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=atk
|
|
pkgver=2.36.0
|
|
pkgrel=1
|
|
pkgdesc="Interface definitions of accessibility infrastructure"
|
|
url="https://gitlab.gnome.org/GNOME/atk"
|
|
arch=(i686 x86_64)
|
|
license=(LGPL-2)
|
|
depends=(glib2)
|
|
makedepends=(gobject-introspection meson)
|
|
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
|
|
sha512sums=('d0f18204eaf96511e8448e3dfbc4b6953a7cf8b816151fb7caf5592cf578572b1cdb16836fe2157b11e3ad018ef171f1ca1bfdf255bb31bb455716d7519fd634')
|
|
|
|
build() {
|
|
hyperbola-meson $pkgname-$pkgver build -D docs=false
|
|
ninja -C build
|
|
}
|
|
|
|
check() {
|
|
meson test -C build --print-errorlogs
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install -C build
|
|
install -Dm644 $pkgname-$pkgver/COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
|
|
}
|