core/xcb-util-wm/PKGBUILD
2013-11-24 17:42:58 +00:00

32 lines
823 B
Bash

#maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
#contributions from AUR: https://aur.archlinux.org/packages/cmplayer/
pkgname=xcb-util-wm
pkgver=0.3.9
pkgrel=2
pkgdesc="Utility libraries for XC Binding"
arch=('x86_64')
url="http://xcb.freedesktop.org"
license=('custom')
depends=('libxcb' 'xcb-util')
makedepends=('gperf')
options=('!libtool')
source=(http://xcb.freedesktop.org/dist/${pkgname}-${pkgver}.tar.bz2
LICENSE)
md5sums=('c612aae7ffe2e70fe743efab9c5548e9'
'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"
}