mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 03:24:54 +00:00
removed old script
This commit is contained in:
parent
e8d5e0f0b5
commit
c4641d77d2
1 changed files with 0 additions and 49 deletions
49
run_svn.sh
49
run_svn.sh
|
@ -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
|
Loading…
Add table
Reference in a new issue