core/xcb-util/PKGBUILD

34 lines
757 B
Bash
Raw Normal View History

# Part of the X.org group
2013-11-25 01:40:06 +08:00
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
2010-03-14 23:48:48 +08:00
pkgname=xcb-util
pkgver=0.4.0
pkgrel=1
2010-03-14 23:48:48 +08:00
pkgdesc="Utility libraries for XC Binding"
arch=('x86_64')
2010-03-14 23:48:48 +08:00
url="http://xcb.freedesktop.org"
license=('custom')
2012-01-13 03:48:10 +08:00
depends=('libxcb')
makedepends=('gperf' 'xorg-util-macros')
source=("http://xcb.freedesktop.org/dist/${pkgname}-${pkgver}.tar.bz2")
sha256sums=('46e49469cb3b594af1d33176cd7565def2be3fa8be4371d62271fabb5eae50e9')
2010-03-14 23:48:48 +08:00
build() {
cd ${pkgname}-${pkgver}
2012-01-13 03:48:10 +08:00
./configure --prefix=/usr --disable-static
make
}
check() {
cd ${pkgname}-${pkgver}
make check
}
2012-01-13 03:48:10 +08:00
package() {
cd ${pkgname}-${pkgver}
2012-01-13 03:48:10 +08:00
make DESTDIR="${pkgdir}" install
install -D -m644 COPYING \
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
2010-03-14 23:48:48 +08:00
}