# Depends on python2

# Exit on error:
set -e

wget http://mercurial.selenic.com/release/mercurial-2.8.tar.gz
tar xf mercurial-2.8.tar.gz
cd mercurial-2.8

# Do not install documentation:
make \
    PREFIX=/usr \
    install-bin

cd ..
exit 0
