mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
16 lines
313 B
Bash
Executable file
16 lines
313 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# This script checks out libtorrent from subversion
|
|
#
|
|
|
|
SVN=$(which svn)
|
|
LT_URL=https://libtorrent.svn.sourceforge.net/svnroot/libtorrent
|
|
VERSION=15
|
|
[ "$1" != "" ] && VERSION=$1
|
|
BRANCH=branches/RC_0_$VERSION
|
|
|
|
if [ -d libtorrent ]; then
|
|
$SVN up libtorrent
|
|
else
|
|
$SVN co $LT_URL/$BRANCH libtorrent
|
|
fi
|