mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 06:04:36 +08:00
22 lines
664 B
Bash
22 lines
664 B
Bash
# $Id: PKGBUILD 54696 2009-10-11 18:33:00Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
pkgname=atk
|
|
pkgver=1.28.0
|
|
pkgrel=1
|
|
pkgdesc="A library providing a set of interfaces for accessibility"
|
|
arch=(i686 x86_64)
|
|
license=('LGPL')
|
|
depends=('glib2>=2.22.0')
|
|
makedepends=('pkgconfig')
|
|
options=('!libtool')
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.28/${pkgname}-${pkgver}.tar.bz2)
|
|
url='http://www.gtk.org/'
|
|
sha256sums=('e4da9fe580d2d55f4e77a138c553b4b32654dfb06bf0715592cc9dbd6355fe87')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|