--- /dev/null
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/xkbset
+-rwxr-xr-x root/root usr/bin/xkbset-gui
+drwxr-xr-x root/root usr/man/
+drwxr-xr-x root/root usr/man/man1/
+-rwxr-xr-x root/root usr/man/man1/xkbset.1.gz
--- /dev/null
+# Description: program to help manage many of the XKB features of X window
+# URL: http://www.math.missouri.edu/~stephen/software/
+# Arch Maintainer System Team crux-arm at mikeux dot dyndns dot org
+# Depends on: xorg-libx11
+
+name=xkbset
+version=0.5
+release=1
+source=(http://www.math.missouri.edu/~stephen/software/$name/$name-$version.tar.gz)
+
+build() {
+ cd $name-$version
+ install -d $PKG/usr/{bin,man/man1}
+ sed -e 's|X11PREFIX=/usr/X11R6|X11PREFIX=/usr/|g' \
+ -e "s|X11BASE=/usr/X11R6|X11BASE=$CLFS/usr|g" \
+ -e 's|INSTALL_PROGRAM=${INSTALL} -s|INSTALL_PROGRAM=${INSTALL}|g' \
+ -i Makefile
+ make CC="$CC"
+ make DESTDIR=$PKG INSTALL_MAN1=$PKG/usr/man/man1/ install
+}