blob: 344bb7950ef4e15c1b9eb9baaa8fa24d01ececdd (
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
5
6 name=at-spi2-core
7 version=2.26.2
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 ./configure --prefix=/usr --libexecdir=/usr/lib/at-spi2 --disable-nls
14 make
15 make DESTDIR=$PKG install
16
17 rm -r $PKG/usr/share/gtk-doc
18 }
|