Files
rutorrent_ynh/scripts/upgrade
2015-10-04 16:17:07 +02:00

34 lines
575 B
Bash

#!/bin/bash
sudo service rtorrent stop
# Build libtorrent
cd /tmp
if [ -d libtorrent ]; then
sudo rm -r libtorrent
fi
sudo git clone https://github.com/rakshasa/libtorrent.git
cd libtorrent
sudo git checkout 0.13.6
sudo ./autogen.sh
sudo ./configure
sudo make
sudo make install
# Build rtorrent
cd /tmp
if [ -d libtorrent ]; then
sudo rm -r rtorrent
fi
sudo git clone https://github.com/rakshasa/rtorrent.git
cd rtorrent
sudo git checkout 0.9.6
sudo ./autogen.sh
sudo ./configure --with-xmlrpc-c
sudo make
sudo make install
sudo ldconfig
sudo service rtorrent start