now installs and runs properly

This commit is contained in:
Zach Tibbitts 2007-02-08 00:59:42 +00:00
parent a4202f6c35
commit 60a0af0237
4 changed files with 8 additions and 5 deletions

View File

@ -8,6 +8,10 @@
# 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: "

View File

@ -50,8 +50,8 @@ interface = None
if not "org.deluge_torrent.Deluge" in dbus_objects:
print "no existing Deluge session"
import delugegtk
interface = delugegtk.DelugeGTK()
import deluge, deluge.delugegtk
interface = deluge.delugegtk.DelugeGTK()
for arg in args:
apath = os.path.abspath(arg)
if apath.endswith(".torrent"):

View File

@ -89,7 +89,7 @@ setup(name="deluge", fullname="Deluge BitTorrent Client", version="0.5.0",
packages=['deluge'],
package_dir = {'deluge': 'src'},
data_files=[("share/deluge/glade", ["glade/delugegtk.glade", "glade/dgtkpopups.glade", "glade/dgtkpref.glade"]),
("share/deluge/pixmaps", ["pixmaps/deluge32.png","pixmaps/deluge128.png"])],
ext_package='deluge',
("share/deluge/pixmaps", ["pixmaps/deluge32.png","pixmaps/deluge128.png", "pixmaps/deluge256.png"])],
ext_package='deluge',
ext_modules=[deluge_core]
)

View File

@ -36,7 +36,6 @@
# time to calculate, so we do if efficiently
# 3. supp_torrent_state - supplementary torrent data, from Deluge
import deluge_core
import os, shutil
import pickle