# Depends on xproto
# Depends on libx11

# Exit on error:
set -e

wget http://www.x.org/releases/individual/app/xinit-1.3.3.tar.bz2
tar xf xinit-1.3.3.tar.bz2
cd xinit-1.3.3
./configure --prefix=
make install
cd ..
rm -rf xinit-1.3.3
rm xinit-1.3.3.tar.bz2

echo
echo If you desire to use the azerty keyboard layout for french;
echo you may add:
echo setxkbmap -layout fr -variant latin9
echo to your ~/.xinitrc

exit 0
