# Depends on libxpm

# Exit on error:
set -e

wget http://www.x.org/releases/individual/lib/libXaw-1.0.12.tar.bz2
tar xf libXaw-1.0.12.tar.bz2
cd libXaw-1.0.12
./configure --prefix=
make install
cd ..
rm -rf libXaw-1.0.12
rm libXaw-1.0.12.tar.bz2

exit 0
