# Note: depends on perl
# Note: depends on expat
wget -c http://www.w3.org/Library/Distribution/w3c-libwww-5.4.1.tgz
tar -xzf w3c-libwww-5.4.1.tgz
cd w3c-libwww-5.4.1
sed -i -e '/HTBind\.h/{n;/HTBind\.h/d;}' Library/src/Makefile.in # Fix an error with trying to install HTBind.h twice in one command
mkdir -p build
cd build
../configure --prefix="/usr"
make # Doesn't mind -j#
make install