# Exit on error:
set -e

wget http://download.transmissionbt.com/files/transmission-2.84.tar.xz \
    --no-check-certificate
tar xf transmission-2.84.tar.xz
cd transmission-2.84

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
