mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 02:54:36 +08:00
24 lines
726 B
Bash
24 lines
726 B
Bash
# $Id: PKGBUILD 55255 2009-10-12 16:08:54Z andyrtr $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=libxcomposite
|
|
pkgver=0.4.1
|
|
pkgrel=1
|
|
pkgdesc="X11 Composite extension library"
|
|
arch=(i686 x86_64)
|
|
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=('0f1367f57fdf5df17a8dd71d0fa68248')
|
|
|
|
build() {
|
|
cd ${srcdir}/libXcomposite-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc --disable-static
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
|
}
|