# Exit on error:
set -e

wget http://ftpmirror.gnu.org/texinfo/texinfo-6.8.tar.xz
tar xf texinfo-6.8.tar.xz
cd texinfo-6.8
./configure --prefix=/local
make install
cd ..
#rm -rf texinfo-6.8
#rm texinfo-6.8.tar.xz

#cd /local/share/info
#rm dir
#for f in *
#    do install-info $f dir 2>/dev/null
#done

exit 0
