Bonsoir,
Pour avoir réessayé a plusieurs reprise, j'ai enfin trouvé d'ou venait mon problème avec le script de ex_rats ou son fork par xavier.
J'ai tout simplement modifier cela:
# compilation libtorrent
if [ ! -d /tmp/libtorrent ]; then
wget http://rtorrent.net/downloads/libtorrent-"$LIBTORRENT".tar.gz
tar xzfv libtorrent-"$LIBTORRENT".tar.gz
mv libtorrent-"$LIBTORRENT" libtorrent
cd libtorrent || exit
else
cd libtorrent || exit
git checkout "$LIBTORRENT"
fi
./autogen.sh
./configure
make -j "$THREAD"
make install
echo ""; set "142" "134"; FONCTXT "$1" "$2"; echo -e "${CBLUE}$TXT1 $LIBTORRENT${CEND}${CGREEN}$TXT2${CEND}"; echo ""
# compilation rtorrent
if [ ! -d /tmp/rtorrent ]; then
cd /tmp || exit
wget http://rtorrent.net/downloads/rtorrent-"$RTORRENT".tar.gz
tar xzfv rtorrent-"$RTORRENT".tar.gz
mv rtorrent-"$RTORRENT" rtorrent
cd rtorrent || exit
else
cd ../rtorrent || exit
git checkout "$RTORRENT"
fi
./autogen.sh
./configure
make -j "$THREAD"
make install
ldconfig
Par ceci
# compilation libtorrent
if [ ! -d /tmp/libtorrent ]; then
git clone https://github.com/rakshasa/libtorrent.git
cd libtorrent || exit
else
cd libtorrent || exit
git checkout 0.13.6
fi
./autogen.sh
./configure
make
make install
echo ""; set "142" "134"; FONCTXT "$1" "$2"; echo -e "${CBLUE}$TXT1 $LIBTORRENT${CEND}${CGREEN}$TXT2${CEND}"; echo ""
# compilation rtorrent
if [ ! -d /tmp/rtorrent ]; then
cd /tmp || exit
git clone https://github.com/rakshasa/rtorrent.git
cd rtorrent || exit
else
cd ../rtorrent || exit
git checkout 0.9.6
fi
./autogen.sh
./configure --with-xmlrpc-c=/usr/local/bin/xmlrpc-c-config
make
make install
ldconfig