Files
extra/libxkbui/PKGBUILD
2025-06-22 20:39:04 -05:00

37 lines
1.1 KiB
Bash

# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=libxkbui
_openbsdver=6.9
pkgver=1.0.2
pkgrel=7
pkgdesc="X11 keyboard UI presentation library, provided by Xenocara"
arch=('i686' 'x86_64')
url="https://www.xenocara.org"
license=('Expat')
depends=('libxt' 'libxkbfile')
makedepends=('pkg-config' 'xenocara-util-macros')
source=(https://repo.hyperbola.info:50000/sources/xenocara-libre/$_openbsdver/lib/libxkbui-$pkgver.tar.lz{,.sig}
COPYING)
sha512sums=('e45bd2f533e1d4e11e15c5cdc42f2a0d229104ecbe0a2cf4da719519b4444452311e82737870e6536002f235098ff3627033c316c1034fe755c49dc0c439d746'
'SKIP'
'fa3dc67cc668c866de3ab216da674456d764cb1524aefa8cbd9c0824caef3269d3d1a31a77f74ad42a0109cf4ead6c87b4743a5e54a00887f6208134009760bd')
validpgpkeys=('C92BAA713B8D53D3CAE63FC9E6974752F9704456') # André Silva
prepare() {
cd "xenocara-$_openbsdver/lib/libxkbui"
autoreconf -vfi
}
build() {
cd "xenocara-$_openbsdver/lib/libxkbui"
./configure --prefix=/usr
make
}
package() {
cd "xenocara-$_openbsdver/lib/libxkbui"
make DESTDIR="$pkgdir" install
install -Dm644 "$srcdir/COPYING" "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}