blob: 5ba4d845e3c9f3cd42c3599e85b4346708c65276 (
plain)
1 # Description: Interface for atk
2 # URL: http://developer.gnome.org/libatspi/
3 # Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
4 # Depends on: dbus gobject-introspection intltool xorg-libxtst meson ninja
5
6 name=at-spi2-core
7 version=2.26.2
8 release=3
9 source=(http://ftp.gnome.org/pub/gnome/sources/at-spi2-core/${version:0:4}/at-spi2-core-$version.tar.xz \
10 at-spi2-core-meson.patch)
11
12 build() {
13 cd $name-$version
14
15 patch -p1 -i $SRC/at-spi2-core-meson.patch
16
17 meson build --prefix /usr --sysconfdir=/usr/etc --libexecdir=/usr/lib/at-spi2
18
19 DESTDIR=$PKG ninja -C build -j ${JOBS:-1} install
20
21 rm -r $PKG/usr/share/locale
22 rm -r $PKG/usr/lib/systemd/
23 }
|