25 lines
640 B
Plaintext
25 lines
640 B
Plaintext
# Description: X keyboard configuration database
|
|
# URL: https://cgit.freedesktop.org/xkeyboard-config/
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
|
# Depends on: xorg-xkbcomp, intltool
|
|
|
|
name=xkeyboard-config
|
|
version=2.24
|
|
release=1
|
|
source=(http://xorg.freedesktop.org/releases/individual/data/$name/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-nls \
|
|
--with-xkb-base=/usr/share/X11/xkb \
|
|
--with-xkb-rules-symlink=xorg
|
|
|
|
make -j1
|
|
make DESTDIR=$PKG install
|
|
|
|
ln -s /var/lib/xkb $PKG/usr/share/X11/xkb/compiled
|
|
find $PKG -name README -delete
|
|
}
|