まずはlibtorrentをダウンロードして解凍してディレクトリ移動
$ wget 'http://libtorrent.rakshasa.no/downloads/libtorrent-0.13.4.tar.gz' $ tar zxf libtorrent-0.13.4.tar.gz $ cd libtorrent-0.13.4/
手順の詳細はINSTALLに書いてある。いつも通りprefixはホームディレクトリ以下のoptにする。
$ sh ./configure --prefix=$(echo ~/opt/) $ make $ make check $ make install
同様にrtorrentのビルド。
$ wget 'http://libtorrent.rakshasa.no/downloads/rtorrent-0.9.4.tar.gz' $ tar zxf rtorrent-0.9.4.tar.gz $ cd rtorrent-0.9.4/ $ sh ./configure --prefix=$(echo ~/opt/) PKG_CONFIG_PATH=~/opt/lib/pkgconfig/ $ make $ make check $ make install
prefix をホームディレクトリ以下にしたので、以下のように起動。
$ ~/opt/bin/rtorrent