--- /dev/null
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/setxkbmap
+drwxr-xr-x root/root usr/man/
+drwxr-xr-x root/root usr/man/man1/
+-rw-r--r-- root/root usr/man/man1/setxkbmap.1.gz
--- /dev/null
+# Description: Set the keyboard using the X Keyboard Extension
+# URL: http://xorg.freedesktop.org
+# Maintainer: Tilman Sauerbeck tilman at crux dot nu
+# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org
+# Depends on: xorg-libx11 xorg-libxkbfile
+
+name=xorg-setxkbmap
+version=1.1.0
+release=1
+source=(http://xorg.freedesktop.org/releases/individual/app/setxkbmap-$version.tar.bz2)
+
+build() {
+ cd setxkbmap-$version
+
+ export SETXKBMAP_LIBS="-L$CLFS/usr/lib -lxkbfile -lX11"
+ export SETXKBMAP_CFLAGS="-I$CLFS/usr/include -I$CLFS/usr/include/X11 -I$CLFS/usr/include/X11/extensions"
+
+ ./configure --build=$CHOST \
+ --host=$CTARGET \
+ --prefix=/usr \
+ --mandir=/usr/man
+
+ make
+ make DESTDIR=$PKG install
+}