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

37
xcb-proto/PKGBUILD Normal file
View File

@@ -0,0 +1,37 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=xcb-proto
_openbsdver=6.9
pkgver=1.14.1
pkgrel=1
pkgdesc="XML-XCB protocol descriptions, provided by Xenocara"
arch=(any)
url="https://www.xenocara.org"
license=('X11')
makedepends=('python' 'libxml2' 'xenocara-util-macros')
source=(https://repo.hyperbola.info:50000/sources/xenocara-libre/$_openbsdver/proto/xcb-proto-$pkgver.tar.lz{,.sig})
sha512sums=('3ae13c8fc68609ceb60fe6c5706c66569e0af4cc077306d3c434dc1bdea5f60322c908cf83b08ae987ea702441eace05aea753b788263baf8bd4ad2ab4fd1db8'
'SKIP')
validpgpkeys=('C92BAA713B8D53D3CAE63FC9E6974752F9704456') # André Silva
prepare() {
cd "xenocara-$_openbsdver/proto/xcb-proto"
autoreconf -vfi
}
build() {
cd "xenocara-$_openbsdver/proto/xcb-proto"
./configure --prefix=/usr
make
}
check() {
cd "xenocara-$_openbsdver/proto/xcb-proto"
make -k check || /bin/true
}
package() {
cd "xenocara-$_openbsdver/proto/xcb-proto"
make DESTDIR="$pkgdir" install
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}