mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 03:24:54 +00:00
add libtorrent fetch script
This commit is contained in:
parent
d299ecedb2
commit
ee73936c26
1 changed files with 16 additions and 0 deletions
16
get_libtorrent.sh
Executable file
16
get_libtorrent.sh
Executable file
|
@ -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
|
Loading…
Add table
Reference in a new issue