# Exit on error:
set -e

wget http://downloads.sourceforge.net/project/pcre/pcre/8.13/pcre-8.13.tar.bz2
tar xf pcre-8.13.tar.bz2
cd pcre-8.13

./configure --prefix=/local \
    --enable-utf8

make install
cd ..
rm -rf pcre-8.13
rm pcre-8.13.tar.bz2

exit 0
