# Description: X keyboard configuration database
# URL: http://www.freedesktop.org/wiki/Software_2fXKeyboardConfig
# Maintainer: Tilman Sauerbeck tilman at crux dot nu
# Arch Maintainer System Team crux-arm at mikeux dot dyndns dot org
# Depends on: xorg-xkbcomp

name=xkeyboard-config
version=1.7
release=1
source=(http://xlibs.freedesktop.org/xkbdesc/$name-$version.tar.bz2)

build() {
  cd xkeyboard-config-$version

  echo "ac_cv_path_XKBCOMP=\"$CLFS/usr/bin/xkbcomp\"" > config.cache

  ./configure --build=$CHOST \
              --host=$CTARGET \
              --prefix=/usr \
              --with-xkb-base=/usr/share/X11/xkb \
              --with-xkb-rules-symlink=xorg \
              --cache-file=config.cache

  make
  make DESTDIR=$PKG install

  rm -rf $PKG/usr/share/locale
  ln -s /var/lib/xkb $PKG/usr/share/X11/xkb/compiled
}