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

View File

@@ -0,0 +1,40 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
# Based on xf86-input-keyboard package
pkgname=xenocara-input-keyboard
_openbsdver=6.9
pkgver=1.9.0
pkgrel=3
pkgdesc="Xenocara keyboard input driver"
arch=(i686 x86_64)
license=('X11')
url="https://www.xenocara.org"
depends=('glibc')
makedepends=('xenocara-server-devel' 'X-ABI-XINPUT_VERSION=24.1' 'xenocara-proto' 'xenocara-util-macros')
provides=('xf86-input-keyboard')
conflicts=('xf86-input-keyboard' 'xenocara-server<1.20' 'X-ABI-XINPUT_VERSION<24.1' 'X-ABI-XINPUT_VERSION>=25')
replaces=('xf86-input-keyboard')
groups=('xenocara-drivers' 'xorg-drivers')
source=(https://repo.hyperbola.info:50000/sources/xenocara-libre/$_openbsdver/driver/xf86-input-keyboard-$pkgver.tar.lz{,.sig})
sha512sums=('4eb485d4d245a9013226937a11b80f23ac6574acb3f0f659ac4414a7a6e974b7c8f784279d0e31f96581935917c2aaf1bb833365b07c92825bf5673f307bdc6c'
'SKIP')
validpgpkeys=('C92BAA713B8D53D3CAE63FC9E6974752F9704456') # André Silva
prepare() {
cd "xenocara-$_openbsdver/driver/xf86-input-keyboard"
autoreconf -vfi
}
build() {
cd "xenocara-$_openbsdver/driver/xf86-input-keyboard"
./configure --prefix=/usr
make
}
package() {
cd "xenocara-$_openbsdver/driver/xf86-input-keyboard"
make DESTDIR="$pkgdir" install
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}