mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 21:47:17 +08:00
30 lines
917 B
Bash
30 lines
917 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>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=libxcomposite
|
|
pkgver=0.4.2
|
|
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=('e38dc98509149083f6c31b49b484e63c')
|
|
|
|
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
|
|
}
|