blob: ff26f1f065bc2a54b3250e30e47cdc9c8ef03999 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Module GTK+ effectuant un pont entre ATK et AT-SPI DBus
# URL: http://www.linuxfoundation.org/collaborate/workgroups/accessibility/atk/at-spi/at-spi_on_d-bus
# Maintainer: NuTyX GNOME team
# Packager: piernov <piernov@piernov.org>
# Depends on: atk, at-spi2-core, dconf
# Run on: atk,at-spi2-core,dconf
name=at-spi2-atk
version=2.3.92
release=1
source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
PYTHON=python2 ./configure --prefix=/usr \
--libexecdir=/usr/lib/$name \
--sysconfdir=/etc \
--enable-p2p \
--disable-schemas-compile
make
make DESTDIR=$PKG install
}
|