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

39
libx11/PKGBUILD Normal file
View File

@@ -0,0 +1,39 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=libx11
_openbsdver=6.9
pkgver=1.7.0
pkgrel=1
pkgdesc="X11 client-side library, provided by Xenocara"
arch=(i686 x86_64)
url="https://www.xenocara.org"
depends=('libxcb' 'xenocara-proto')
makedepends=('xenocara-util-macros' 'libxtrans')
license=('X11')
source=(https://repo.hyperbola.info:50000/sources/xenocara-libre/$_openbsdver/lib/libx11-$pkgver.tar.lz{,.sig})
sha512sums=('aa4dd261ed67db481b67e02b0e2325713f701a6eee301356a8c90e609eb113b6c802adef301749f49681d2a95b09d6d419acad4911c8095a0e2011c7bff628d5'
'SKIP')
validpgpkeys=('C92BAA713B8D53D3CAE63FC9E6974752F9704456') # André Silva
prepare() {
cd "xenocara-$_openbsdver/lib/libX11"
autoreconf -vfi
}
build() {
cd "xenocara-$_openbsdver/lib/libX11"
./configure --prefix=/usr --disable-static --disable-xf86bigfont
make
}
check() {
cd "xenocara-$_openbsdver/lib/libX11"
make check
}
package() {
cd "xenocara-$_openbsdver/lib/libX11"
make DESTDIR="$pkgdir" install
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}