mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 15:37:14 +08:00
35 lines
741 B
Bash
35 lines
741 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
|
|
pkgname=at-spi2-atk
|
|
pkgver=2.6.2
|
|
pkgrel=2
|
|
pkgdesc="A GTK+ module that bridges ATK to D-Bus at-spi"
|
|
arch=('x86_64')
|
|
url="http://www.gnome.org"
|
|
license=('GPL2')
|
|
depends=('at-spi2-core' 'libx11' 'atk')
|
|
makedepends=('intltool')
|
|
install=at-spi2-atk.install
|
|
options=('!libtool')
|
|
source=("http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz")
|
|
md5sums=('7e43d24b64d156119b2b0879393cc94d')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
|
|
sed -i -e '/AC_PATH_XTRA/d' configure.ac
|
|
autoreconf --force --install
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--disable-schemas-compile
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|