mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 02:34:37 +08:00
31 lines
764 B
Bash
31 lines
764 B
Bash
# Part of the X.org group
|
|
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
|
|
|
|
pkgname=xcb-util
|
|
pkgver=0.3.9
|
|
pkgrel=3
|
|
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
|
|
LICENSE)
|
|
md5sums=('01dcc7a16d5020530552712710646ea2'
|
|
'2672c2e72dedb40f773e989dd622f298')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
install -D -m644 "${srcdir}/LICENSE" \
|
|
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
}
|