CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
xorg-libxcursor: initial import (verified compilation)
[attic/ports/xorg-cross.git] / xkeyboard-config / Pkgfile
CommitLineData
1d03cf81
JB
1# Description: X keyboard configuration database
2# URL: http://www.freedesktop.org/wiki/Software_2fXKeyboardConfig
3# Maintainer: Tilman Sauerbeck tilman at crux dot nu
4# Arch Maintainer System Team crux-arm at mikeux dot dyndns dot org
5# Depends on: xorg-xkbcomp
6
7name=xkeyboard-config
8version=1.7
9release=1
10source=(http://xlibs.freedesktop.org/xkbdesc/$name-$version.tar.bz2)
11
12build() {
13 cd xkeyboard-config-$version
14
15 echo "ac_cv_path_XKBCOMP=\"$CLFS/usr/bin/xkbcomp\"" > config.cache
16
17 ./configure --build=$CHOST \
18 --host=$CTARGET \
19 --prefix=/usr \
20 --with-xkb-base=/usr/share/X11/xkb \
21 --with-xkb-rules-symlink=xorg \
22 --cache-file=config.cache
23
24 make
25 make DESTDIR=$PKG install
26
27 rm -rf $PKG/usr/share/locale
28 ln -s /var/lib/xkb $PKG/usr/share/X11/xkb/compiled
29}