# Exit on error:
set -e

wget http://ftpmirror.gnu.org/libtasn1/libtasn1-3.4.tar.gz
tar xf libtasn1-3.4.tar.gz
cd libtasn1-3.4
./configure --prefix=
make install
cd ..
rm -rf libtasn1-3.4
rm libtasn1-3.4.tar.gz

exit 0
