# Exit on error:
set -e

wget http://www.complang.org/ragel/ragel-6.8.tar.gz
tar xf ragel-6.8.tar.gz
cd ragel-6.8

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
