Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/sh
- cd ~/sources
- mkdir rtorrent
- cd rtorrent
- svn co https://xmlrpc-c.svn.sourceforge.net/svnroot/xmlrpc-c/advanced xmlrpc-c
- cd xmlrpc-c
- ./configure
- make
- sudo make install
- cd ~/sources/rtorrent
- git clone https://github.com/rakshasa/libtorrent
- cd libtorrent
- ./autogen.sh
- ./configure
- make
- sudo make install
- echo "include /usr/local/lib" | sudo tee -a /etc/ld.so.conf
- sudo ldconfig
- cd ~/sources/rtorrent
- git clone https://github.com/rakshasa/rtorrent
- cd rtorrent
- ./autogen.sh
- ./configure --with-xmlrpc-c
- make
- sudo make install
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement