xorg/xkeyboard-config/Pkgfile

30 lines
758 B
Plaintext
Raw Normal View History

2007-01-23 19:40:13 +01:00
# Description: X keyboard configuration database
2018-07-10 22:52:38 +02:00
# URL: https://cgit.freedesktop.org/xkeyboard-config/
2012-07-14 10:15:51 +02:00
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
# Depends on: libxslt xorg-xkbcomp
# Optional: intltool
2007-01-23 19:40:13 +01:00
name=xkeyboard-config
2023-06-14 08:40:46 +02:00
version=2.39
2020-04-06 15:46:21 +02:00
release=1
2022-02-13 23:01:21 +01:00
source=(https://www.x.org/releases/individual/data/$name/$name-$version.tar.xz)
2007-01-23 19:40:13 +01:00
build() {
meson setup $name-$version build \
2020-10-12 12:59:27 +02:00
--prefix=/usr \
2022-02-13 23:01:21 +01:00
--buildtype plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
2022-02-13 23:01:21 +01:00
-D xkb-base="/usr/share/X11/xkb" \
-D compat-rules=true \
-D xorg-rules-symlinks=true
2022-02-13 23:01:21 +01:00
2023-06-14 08:40:46 +02:00
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
2007-07-18 18:57:24 +02:00
2022-02-13 23:01:21 +01:00
install -m755 -d $PKG/var/lib/xkb
2012-07-14 10:15:51 +02:00
find $PKG -name README -delete
rm -r $PKG/usr/share/locale
2007-01-23 19:40:13 +01:00
}