mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-09 00:17:31 +00:00
23 lines
727 B
Bash
23 lines
727 B
Bash
# Maintainer: Jan de Groot <jan@archlinux.org>
|
|
|
|
pkgname=at-spi
|
|
pkgver=1.26.0
|
|
pkgrel=1
|
|
pkgdesc="Assistive Technology Service Provider Interface"
|
|
arch=('arm')
|
|
license=('GPL')
|
|
depends=('libbonobo>=2.24.1' 'libxtst' 'gtk2>=2.16.0')
|
|
makedepends=('pkgconfig' 'python' 'intltool')
|
|
options=('!libtool')
|
|
url="http://www.gnome.org"
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.26/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('3f2f7d29b45eff08adf56af0d31d3984')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--localstatedir=/var --disable-static \
|
|
--libexecdir=/usr/lib/at-spi || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|