mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
683 B
Bash
25 lines
683 B
Bash
|
# $Id: PKGBUILD 44696 2009-07-03 18:03:42Z jgc $
|
||
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=gnome-mag
|
||
|
pkgver=0.15.7
|
||
|
pkgrel=1
|
||
|
pkgdesc="Gnome magnifier"
|
||
|
arch=(i686 x86_64)
|
||
|
license=('GPL')
|
||
|
url="http://www.gnome.org"
|
||
|
depends=('at-spi>=1.26.0' 'libsm')
|
||
|
makedepends=('intltool' 'pkgconfig')
|
||
|
options=('!libtool')
|
||
|
groups=('gnome-extra')
|
||
|
source=(http://ftp.gnome.org/pub/gnome/sources/gnome-mag/0.15/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('40eb26385e3225ac5cb1eab87488cfc3')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
./configure --prefix=/usr --sysconfdir=/etc \
|
||
|
--localstatedir=/var || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="${pkgdir}" install || return 1
|
||
|
}
|