mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 11:57:17 +08:00
29 lines
883 B
Bash
29 lines
883 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=xcb-util
|
|
pkgver=0.3.8
|
|
pkgrel=1
|
|
pkgdesc="Utility libraries for XC Binding"
|
|
arch=('i686' 'x86_64')
|
|
url="http://xcb.freedesktop.org"
|
|
license=('custom')
|
|
depends=('libxcb>=1.7')
|
|
makedepends=('gperf')
|
|
options=('!libtool')
|
|
source=(http://xcb.freedesktop.org/dist/${pkgname}-${pkgver}.tar.bz2
|
|
LICENSE)
|
|
md5sums=('8ce019c4bbf20dce246b98f177cfccff'
|
|
'2672c2e72dedb40f773e989dd622f298')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --disable-static || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
install -D -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" || return 1
|
|
}
|