mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 00:57:14 +08:00
24 lines
766 B
Bash
24 lines
766 B
Bash
|
# $Id: PKGBUILD 55289 2009-10-12 16:45:45Z andyrtr $
|
||
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=libxtst
|
||
|
pkgver=1.1.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="X11 Testing -- Resource extension library"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://xorg.freedesktop.org/"
|
||
|
license=('custom')
|
||
|
depends=('libxext>=1.1' 'libxi>=1.3' 'recordproto>=1.14' 'inputproto>=2.0')
|
||
|
makedepends=('pkgconfig' 'xmlto')
|
||
|
options=('!libtool')
|
||
|
source=(${url}/releases/individual/lib/libXtst-${pkgver}.tar.bz2)
|
||
|
md5sums=('dd6f3e20b87310187121539f9605d977')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/libXtst-${pkgver}"
|
||
|
./configure --prefix=/usr --disable-static || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="${pkgdir}" install || return 1
|
||
|
install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" || return 1
|
||
|
}
|