blob: 7f2109880edc425e8c99e4b379f5c2c9d1bcac16 (
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, glib, intltool, xorg-libxtst
5
6 name=at-spi2-core
7 version=2.22.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 ./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 }
|