2009-09-26 14:35:50 +00:00
|
|
|
# Maintainer: Alexander Baldeck <alexander@archlinux.org>
|
|
|
|
# Contributor: Jan de Groot <jgc@archlinux.org>
|
2009-11-22 11:13:47 +00:00
|
|
|
|
2009-09-26 14:35:50 +00:00
|
|
|
pkgname=libxcomposite
|
|
|
|
pkgver=0.4.0
|
|
|
|
pkgrel=2
|
|
|
|
pkgdesc="X11 Composite extension library"
|
2009-11-22 11:13:47 +00:00
|
|
|
arch=('arm')
|
2009-09-26 14:35:50 +00:00
|
|
|
url="http://xorg.freedesktop.org/"
|
|
|
|
license=('custom')
|
|
|
|
depends=('libxfixes' 'libxext' 'compositeproto')
|
|
|
|
makedepends=('pkgconfig')
|
|
|
|
options=(!libtool)
|
|
|
|
source=(${url}/releases/individual/lib/libXcomposite-${pkgver}.tar.bz2)
|
|
|
|
md5sums=('7e95395dea89be21bae929b9b7f16641')
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${srcdir}/libXcomposite-${pkgver}
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc
|
|
|
|
make || return 1
|
|
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
|
|
install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
|
|
|
}
|