Update to rtorrent 0.9.6 / libtorrent 0.13.6

This commit is contained in:
Andrea Cotza
2015-10-03 22:31:35 +02:00
parent afbacd6a0b
commit d23cb678fb
2 changed files with 35 additions and 3 deletions

View File

@@ -0,0 +1,25 @@
#!/bin/bash
sudo service rtorrent stop
# Build libtorrent
cd /tmp
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
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 service rtorrent start