mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 05:07:13 +08:00
29 lines
701 B
Bash
29 lines
701 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=atk
|
|
pkgver=2.2.0
|
|
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=('8b22f0e7803dd3734c676ccd68ea999ff1156ca49d99c3de5c1d269ad0c3739d')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|