mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
761 B
Bash
25 lines
761 B
Bash
|
# $Id: PKGBUILD 30913 2009-03-22 17:30:35Z jgc $
|
||
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=libgail-gnome
|
||
|
pkgver=1.20.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="GNOME Accessibility Implementation Library for gnomeui and libbonoboui"
|
||
|
arch=(i686 x86_64)
|
||
|
license=('LGPL')
|
||
|
depends=('gnome-panel>=2.26.0' 'at-spi>=1.26.0')
|
||
|
makedepends=('intltool' 'pkgconfig')
|
||
|
options=('!libtool')
|
||
|
groups=('gnome')
|
||
|
url="http://www.gnome.org"
|
||
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.20/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('5c5b71af5a8ab2a9403bdae52b20e46c')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
./configure --prefix=/usr --sysconfdir=/etc \
|
||
|
--localstatedir=/var || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="${pkgdir}" install || return 1
|
||
|
}
|