initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

34
xcb-util-cursor/PKGBUILD Normal file
View File

@@ -0,0 +1,34 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=xcb-util-cursor
_openbsdver=6.9
pkgver=0.1.3
pkgrel=3
pkgdesc="XCB cursor library, provided by Xenocara"
arch=('i686' 'x86_64')
url="https://www.xenocara.org"
license=('X11')
depends=('libxcb' 'xcb-util-renderutil' 'xcb-util-image')
makedepends=('xenocara-util-macros')
source=(https://repo.hyperbola.info:50000/sources/xenocara-libre/$_openbsdver/lib/xcb-util-cursor-$pkgver.tar.lz{,.sig})
sha512sums=('80c7bbdc65618b41ec9b8a5be3bf8d9432c35ff572c1910523ec337a562833fb946886ddad6cabfd4f76ee376ab2f855ce6ed26c06e9f2b1ee8ae4ecdeceaa58'
'SKIP')
validpgpkeys=('C92BAA713B8D53D3CAE63FC9E6974752F9704456') # André Silva
prepare() {
cd "xenocara-$_openbsdver/lib/xcb-util-cursor"
autoreconf -vfi
}
build() {
cd "xenocara-$_openbsdver/lib/xcb-util-cursor"
./configure --prefix=/usr
make
}
package() {
cd "xenocara-$_openbsdver/lib/xcb-util-cursor"
make DESTDIR="$pkgdir" install
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}