core/at-spi2-atk/PKGBUILD

37 lines
837 B
Bash

#
# Platform Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas@chakra-project.org
# contributor Ionut Biru <ibiru@archlinux.org>
pkgname=at-spi2-atk
pkgver=2.6.2
pkgrel=1
pkgdesc="A GTK+ module that bridges ATK to D-Bus at-spi"
arch=('x86_64')
url="http://www.gnome.org"
license=('GPL2')
depends=('at-spi2-core' 'libx11' 'atk' 'dconf')
makedepends=('intltool')
install=at-spi2-atk.install
options=('!libtool')
source=("http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz")
md5sums=('7e43d24b64d156119b2b0879393cc94d')
build() {
cd $pkgname-$pkgver
sed -i -e '/AC_PATH_XTRA/d' configure.ac
autoreconf --force --install
./configure --prefix=/usr --sysconfdir=/etc \
--disable-schemas-compile
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}