# Exit on error:
set -e

wget ftp://ftp.samba.org/pub/rsync/rsync-3.1.0.tar.gz
tar xf rsync-3.1.0.tar.gz
cd rsync-3.1.0

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
