# Depends on apr
# Depends on apr-util

# Exit on error:
set -e

wget http://www.apache.org/dist/subversion/subversion-1.8.5.tar.bz2
tar xf subversion-1.8.5.tar.bz2
cd subversion-1.8.5

./configure \
    --prefix=/usr
#    --with-apr=/usr \
#    --with-apr-util=/usr \
#    --without-swig \
#    --without-apxs \
#    --disable-mod-activation

make
make install

cd ..
exit 0
