mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 15:37:14 +08:00
29 lines
665 B
Bash
29 lines
665 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=atk
|
|
pkgver=2.6.0
|
|
pkgrel=1
|
|
pkgdesc="A library providing a set of interfaces for accessibility"
|
|
arch=('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/'
|
|
md5sums=('6b34e2a63dda4429b5692be7ca3aa5bf')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|