mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
23 lines
799 B
Bash
23 lines
799 B
Bash
# $Id: PKGBUILD 49737 2009-08-15 14:30:20Z jgc $
|
|
# Maitnainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=java-access-bridge
|
|
pkgver=1.26.2
|
|
pkgrel=1
|
|
pkgdesc="Java bindings for the GNOME accessibility framework"
|
|
arch=(i686 x86_64)
|
|
license=('LGPL')
|
|
url="http://www.gnome.org"
|
|
depends=('java-runtime' 'gtk2>=2.16.5' 'at-spi>=1.26.0' 'libbonobo>=2.24.1')
|
|
makedepends=('intltool' 'pkgconfig' 'openjdk6' 'xorg-utils')
|
|
options=('!libtool')
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.26/${pkgname}-${pkgver}.tar.bz2)
|
|
sha1sums=('5f08bba19531954cec82df1bcdb89df67ee890a4')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--localstatedir=/var --disable-static || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|