# Exit on error:
set -e

wget http://icon-theme.freedesktop.org/releases/hicolor-icon-theme-0.12.tar.gz
tar xf hicolor-icon-theme-0.12.tar.gz
cd hicolor-icon-theme-0.12
./configure --prefix=
make install
cd ..
rm -rf hicolor-icon-theme-0.12
rm hicolor-icon-theme-0.12.tar.gz

exit 0
