# Exit on error:
set -e

wget http://ftpmirror.gnu.org/libtasn1/libtasn1-3.3.tar.gz
tar xf libtasn1-3.3.tar.gz
cd libtasn1-3.3

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
