diff --git a/run_svn.sh b/run_svn.sh deleted file mode 100644 index 681ad70ef..000000000 --- a/run_svn.sh +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh -# -# This file is public domain -# -# run_svn.sh -# -# This is a small shell script to build and run -# a working copy of Deluge-SVN -# - -echo "For now, you'll have to install Deluge to run it" -exit - - -if [ -d ./working/ ] -then - echo " Removing old files: " - rm -rf working -fi -echo " Creating new working directory: " -mkdir working/ working/glade/ working/pixmaps/ -echo " Updating to latest SVN version: " -svn update -echo " Copy source to working directory: " -for file in $(echo src/*) -do - cp $file working/ -done -echo " Copying data to working directory: " -for file in $(echo src/glade/*) -do - cp $file working/glade/ -done -for file in $(echo src/pixmaps/*) -do - cp $file working/pixmaps/ -done -echo " Building Deluge-SVN: " -python setup.py build -echo " Copying C++ module to current directory: " -for file in $(echo build/*) -do - if [ -e $file/deluge/deluge_core.so ] - then - cp $file/deluge/deluge_core.so working/ - fi -done -echo " Launching Deluge-SVN: " -python working/delugegtk.py