40 lines
1.1 KiB
Bash
40 lines
1.1 KiB
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=xcb-util-wm
|
|
_openbsdver=6.9
|
|
pkgver=0.4.1
|
|
pkgrel=3
|
|
pkgdesc="Utility libraries for XC Binding - client and window-manager helpers for ICCCM, provided by Xenocara"
|
|
arch=('i686' 'x86_64')
|
|
url="https://www.xenocara.org"
|
|
license=('X11')
|
|
depends=('libxcb>=1.14')
|
|
makedepends=('xenocara-util-macros')
|
|
source=(https://repo.hyperbola.info:50000/sources/xenocara-libre/$_openbsdver/lib/xcb-util-wm-$pkgver.tar.lz{,.sig})
|
|
sha512sums=('b4caf0896b21052014a9adac509801026d78dfd2b6ec851714bfde1f861da651bb90e16cc59bdddddb3a9dff4e411809cf44c9c67ec05902affa91713d39945d'
|
|
'SKIP')
|
|
validpgpkeys=('C92BAA713B8D53D3CAE63FC9E6974752F9704456') # André Silva
|
|
|
|
prepare() {
|
|
cd "xenocara-$_openbsdver/lib/xcb-util-wm"
|
|
autoreconf -vfi
|
|
}
|
|
|
|
build() {
|
|
cd "xenocara-$_openbsdver/lib/xcb-util-wm"
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "xenocara-$_openbsdver/lib/xcb-util-wm"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "xenocara-$_openbsdver/lib/xcb-util-wm"
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
}
|