mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
27 lines
889 B
Bash
27 lines
889 B
Bash
# $Id: PKGBUILD 44719 2009-07-03 18:15:15Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
# Contributor: William Rea <sillywilly@gmail.com>
|
|
|
|
pkgname=orca
|
|
pkgver=2.26.3
|
|
pkgrel=1
|
|
pkgdesc="A scriptable screen reader and magnifier"
|
|
arch=(i686 x86_64)
|
|
license=('LGPL')
|
|
url="http://www.gnome.org/projects/orca"
|
|
install=orca.install
|
|
options=('!libtool')
|
|
depends=('gnome-python>=2.26.1' 'gnome-speech>=0.4.25' 'gnome-mag>=0.15.7' 'brltty' 'libgail-gnome>=1.20.1')
|
|
makedepends=('pkgconfig' 'intltool')
|
|
replaces=('gnopernicus')
|
|
groups=('gnome-extra')
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/2.26/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('72dbf273bedd214e9023725690fb61b7')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--localstatedir=/var || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|