# Exit on error:
set -e

wget http://ftpmirror.gnu.org/libidn/libidn-1.28.tar.gz
tar xf libidn-1.28.tar.gz
cd libidn-1.28

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
