Module: deluge Branch: 1.3-stable Commit: 7f323ec0fc587566748c087f02cf1d6c871a3ad4
Author: Damien Churchill <[email protected]> Date: Thu Jul 22 18:17:50 2010 +0100 add libtorrent fetch script --- get_libtorrent.sh | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/get_libtorrent.sh b/get_libtorrent.sh new file mode 100755 index 0000000..466558d --- /dev/null +++ b/get_libtorrent.sh @@ -0,0 +1,16 @@ +#!/bin/bash +# +# This script checks out libtorrent from subversion +# + +SVN=$(which svn) +LT_URL=https://libtorrent.svn.sourceforge.net/svnroot/libtorrent +VERSION=14 +[ "$1" != "" ] && VERSION=$1 +BRANCH=branches/RC_0_$VERSION + +if [ -d libtorrent ]; then + $SVN up libtorrent +else + $SVN co $LT_URL/$BRANCH libtorrent +fi -- You received this message because you are subscribed to the Google Groups "deluge-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/deluge-commit?hl=en.
