# Depends on libunistring
# Depends on bdw-gc

# Exit on error:
set -e

wget http://ftpmirror.gnu.org/guile/guile-2.0.9.tar.xz
tar xf guile-2.0.9.tar.xz
cd guile-2.0.9

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
