mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 06:47:13 +08:00
29 lines
873 B
Bash
29 lines
873 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=libxcomposite
|
|
pkgver=0.4.3
|
|
pkgrel=1
|
|
pkgdesc="X11 Composite extension library"
|
|
arch=(i686 x86_64)
|
|
url="http://xorg.freedesktop.org/"
|
|
license=('custom')
|
|
depends=('libxfixes' 'compositeproto')
|
|
makedepends=('xorg-util-macros')
|
|
options=(!libtool)
|
|
source=(${url}/releases/individual/lib/libXcomposite-${pkgver}.tar.bz2)
|
|
sha1sums=('081b26b556d55e20d7956c80a2ea2854962aecec')
|
|
|
|
build() {
|
|
cd "${srcdir}/libXcomposite-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc --disable-static
|
|
make
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
|
|
}
|