diff options
Diffstat (limited to 'gnome-unstable/atk/PKGBUILD')
-rw-r--r-- | gnome-unstable/atk/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnome-unstable/atk/PKGBUILD b/gnome-unstable/atk/PKGBUILD new file mode 100644 index 000000000..0b6d74640 --- /dev/null +++ b/gnome-unstable/atk/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 165747 2012-08-29 11:56:13Z jgc $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=atk +pkgver=2.5.4 +pkgrel=1 +pkgdesc="A library providing a set of interfaces for accessibility" +arch=(i686 x86_64) +license=('LGPL') +depends=('glib2') +makedepends=('gobject-introspection') +options=('!libtool') +source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) +url='http://www.gtk.org/' +sha256sums=('af6d6d8ec4543f338bf2476974de69891b7419913dd1cf4a94d53696bcc14aab') + +build() { + cd "$pkgname-$pkgver" + ./configure --prefix=/usr + make +} + +package() { + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} |