mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 18:54:36 +08:00
32 lines
807 B
Bash
32 lines
807 B
Bash
# Part of the X.org group
|
|
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
|
|
|
|
pkgname=xcb-util-renderutil
|
|
pkgver=0.3.8
|
|
pkgrel=3
|
|
pkgdesc="Utility libraries for XC Binding"
|
|
arch=('x86_64')
|
|
url="http://xcb.freedesktop.org"
|
|
license=('custom')
|
|
depends=('libxcb' 'xcb-util')
|
|
makedepends=('gperf' 'xorg-util-macros')
|
|
options=('!libtool')
|
|
source=(http://xcb.freedesktop.org/dist/${pkgname}-${pkgver}.tar.bz2
|
|
LICENSE)
|
|
md5sums=('b346ff598ee093c141f836fbc0f8f721'
|
|
'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"
|
|
}
|