mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
23 lines
755 B
Bash
23 lines
755 B
Bash
# $Id: PKGBUILD 35586 2009-04-14 05:31:14Z eric $
|
|
# Maintainer: Alexander Baldeck <alexander@archlinux.org>
|
|
# Contributor: Jan de Groot <jgc@archlinux.org>
|
|
pkgname=libxcomposite
|
|
pkgver=0.4.0
|
|
pkgrel=2
|
|
pkgdesc="X11 Composite extension library"
|
|
arch=(arm)
|
|
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
|
|
}
|