# Exit on error:
set -e

wget ftp://sourceware.org/pub/libffi/libffi-3.0.13.tar.gz
tar xf libffi-3.0.13.tar.gz
cd libffi-3.0.13

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
