blob: 222000ee1400ece28da761b7da2a710776d4d64e (
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.34.0
8 release=1
9 source=(http://ftp.gnome.org/pub/gnome/sources/at-spi2-core/${version:0:4}/at-spi2-core-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13
14 meson build --prefix /usr --sysconfdir=/usr/etc --libexecdir=/usr/lib/at-spi2
15
16 DESTDIR=$PKG ninja -C build -j ${JOBS:-1} install
17
18 rm -r $PKG/usr/share/locale
19 rm -r $PKG/usr/lib/systemd/
20 }
|