deluge/get_libtorrent.sh

22 lines
391 B
Bash
Raw Normal View History

2010-07-22 17:17:50 +00:00
#!/bin/bash
#
# This script checks out libtorrent from subversion
#
SVN=$(which svn)
LT_URL=https://libtorrent.svn.sourceforge.net/svnroot/libtorrent
VERSION=16
2010-07-22 17:17:50 +00:00
[ "$1" != "" ] && VERSION=$1
BRANCH=branches/RC_0_$VERSION
if [ -z $SVN ]; then
echo "Please install an 'svn' client"
exit 1
fi
2010-07-22 17:17:50 +00:00
if [ -d libtorrent ]; then
$SVN up libtorrent
else
$SVN co $LT_URL/$BRANCH libtorrent
fi