63 lines
2.5 KiB
Bash
63 lines
2.5 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobextra/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=xkeyboard-config
|
|
pkgver=2.37
|
|
pkgrel=01
|
|
pkgdesc="X keyboard configuration files"
|
|
arch=(any)
|
|
url="https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config"
|
|
makedepends=('xorg-xkbcomp' 'libxslt' 'python' 'meson') # 'git')
|
|
provides=('xkbdata')
|
|
replaces=('xkbdata')
|
|
conflicts=('xkbdata')
|
|
#source=(https://xorg.freedesktop.org/archive/individual/data/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig}
|
|
# alujiskeys.patch::https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config/-/commit/dc1534b4b0cf2153e4b8848310efc8393fb73830.patch
|
|
# backslahes-instead-of-slashes.patch::https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config/-/commit/8ac41c50ab0aa7cd3a7e94313074115de2a172d2.patch)
|
|
# https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config
|
|
source=(https://xorg.freedesktop.org/archive/individual/data/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig})
|
|
#source=(#https://xorg.freedesktop.org/archive/individual/data/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig}
|
|
# "git+https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config.git#commit=$_commit")
|
|
|
|
#pkgver() {
|
|
# cd $pkgname
|
|
# git describe --long | sed "s/$pkgname//" | sed 's/^Release.//;s/\([^-]*-g\)/\1/;s/-/+/g;' | sed 's/+//'
|
|
#}
|
|
|
|
build() {
|
|
arch-meson ${pkgname}-${pkgver} build \
|
|
-D xkb-base="/usr/share/X11/xkb" \
|
|
-D compat-rules=true \
|
|
-D xorg-rules-symlinks=true
|
|
|
|
# Print config
|
|
meson configure build
|
|
|
|
ninja -C build
|
|
|
|
}
|
|
|
|
package() {
|
|
|
|
DESTDIR="$pkgdir" ninja -C build install
|
|
|
|
install -m755 -d "${pkgdir}/var/lib/xkb"
|
|
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
install -m644 ${pkgname}-${pkgver}/COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
|
|
#install -m644 ${pkgname}/COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
|
|
|
|
}
|
|
|
|
#---- license gpg-key sha256sums ----
|
|
|
|
license=('custom')
|
|
|
|
##validpgpkeys=('15CFA5C595041D2CCBEA155F1732AA424A0E86B4') # "Sergey Udaltsov (For GNOME-related tasks) <svu@gnome.org>"
|
|
validpgpkeys=('FFB4CCD275AAA422F5F9808E0661D98FC933A145') # Sergey Udaltsov <sergey.udaltsov@gmail.com>
|
|
|
|
sha256sums=(eb1383a5ac4b6210d7c7302b9d6fab052abdf51c5d2c9b55f1f779997ba68c6c # xkeyboard-config-2.37.tar.xz
|
|
53d1ffccc5855b828e46ff49031b6bac88bf4d787cecee2e6082c6e958f73641) # xkeyboard-config-2.37.tar.xz.sig
|