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
libxkbfile/PKGBUILD Normal file
View File

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