Advertisement
Localizator

rtorrent_install.sh

Jan 6th, 2012
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.56 KB | None | 0 0
  1. #!/bin/sh
  2. cd ~/sources
  3. mkdir rtorrent
  4. cd rtorrent
  5. svn co https://xmlrpc-c.svn.sourceforge.net/svnroot/xmlrpc-c/advanced xmlrpc-c
  6. cd xmlrpc-c
  7. ./configure
  8. make
  9. sudo make install
  10. cd ~/sources/rtorrent
  11. git clone https://github.com/rakshasa/libtorrent
  12. cd libtorrent
  13. ./autogen.sh
  14. ./configure
  15. make
  16. sudo make install
  17. echo "include /usr/local/lib" | sudo tee -a /etc/ld.so.conf
  18. sudo ldconfig
  19. cd ~/sources/rtorrent
  20. git clone https://github.com/rakshasa/rtorrent
  21. cd rtorrent
  22. ./autogen.sh
  23. ./configure --with-xmlrpc-c
  24. make
  25. sudo make install
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement