mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 18:47:14 +08:00
34 lines
757 B
Bash
34 lines
757 B
Bash
# Part of the X.org group
|
|
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
|
|
|
|
pkgname=xcb-util
|
|
pkgver=0.4.0
|
|
pkgrel=1
|
|
pkgdesc="Utility libraries for XC Binding"
|
|
arch=('x86_64')
|
|
url="http://xcb.freedesktop.org"
|
|
license=('custom')
|
|
depends=('libxcb')
|
|
makedepends=('gperf' 'xorg-util-macros')
|
|
source=("http://xcb.freedesktop.org/dist/${pkgname}-${pkgver}.tar.bz2")
|
|
sha256sums=('46e49469cb3b594af1d33176cd7565def2be3fa8be4371d62271fabb5eae50e9')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd ${pkgname}-${pkgver}
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
install -D -m644 COPYING \
|
|
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
|
|
}
|