# SHORT DESC: Fast C++ BitTorrent Library
# LONG DESC: LibTorrent is a BitTorrent library written in C++ for Unix. It is designed to avoid the redundant buffers and data copying that most (all?) other BitTorrent implementations suffer from. The library is single-threaded and the client handles the select loop.
# COMPILE REQUIREMENT: libsigc++
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir="$libdir" && \
make || exit 1
cat <<EOF >install-scp.sh
#! /bin/sh
make install || exit 1
exit 0
EOF
chmod +x install-scp.sh
${installmonitor} ./install-scp.sh || exit 1
# DEPENDED ON BY: rtorrent
|