20 lines
552 B
Plaintext
20 lines
552 B
Plaintext
# Description: Interface for atk
|
|
# URL: http://developer.gnome.org/libatspi/
|
|
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
|
|
# Depends on: dbus gobject-introspection intltool xorg-libxtst meson ninja
|
|
|
|
name=at-spi2-core
|
|
version=2.26.2
|
|
release=1
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/at-spi2-core/${version:0:4}/at-spi2-core-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
meson build --prefix /usr --sysconfdir=/usr/etc --libexecdir=/usr/lib/at-spi2
|
|
|
|
DESTDIR=$PKG ninja -C build -j ${JOBS:-1} install
|
|
|
|
rm -r $PKG/usr/share/locale
|
|
}
|