Delete 'rtorrent.sh'

This commit is contained in:
virtubox 2017-11-02 10:25:28 +00:00
parent 0ce81058af
commit 26fbfd27f1
1 changed files with 0 additions and 37 deletions

View File

@ -1,37 +0,0 @@
#!/bin/bash
apt install automake libcppunit-dev libtool build-essential pkg-config libssl-dev libcurl4-openssl-dev git unzip unrar rar zip ffmpeg buildtorrent mediainfo libsigc++-2.0-dev libncurses5-dev screen subversion apache2-utils curl -y
## XMLRPC
cd /tmp
svn checkout http://svn.code.sf.net/p/xmlrpc-c/code/stable xmlrpc-c
cd xmlrpc-c/
./configure
make -j $(nproc)
make install
## libtorrent
cd /tmp
git clone https://github.com/rakshasa/libtorrent.git
cd libtorrent
git checkout `git tag | tail -1`
./autogen.sh
./configure
make -j $(nproc)
make install
## rtorrent
cd /tmp
git clone https://github.com/rakshasa/rtorrent.git
cd rtorrent
git checkout `git tag | tail -1`
./autogen.sh
./configure --with-xmlrpc-c
make -j $(nproc)
make install
ldconfig