mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-05 16:08:40 +00:00
menu entry
This commit is contained in:
parent
f6fcf7ab45
commit
e573805007
2 changed files with 7 additions and 5 deletions
|
@ -1,9 +1,9 @@
|
||||||
[Desktop-Entry]
|
[Desktop Entry]
|
||||||
Encoding=UTF-8
|
Encoding=UTF-8
|
||||||
Name=Deluge BitTorrent Client
|
Name=Deluge BitTorrent Client
|
||||||
Comment=BitTorrent client in Python/PyGTK
|
Comment=Bittorrent client written in Python/PyGTK
|
||||||
Exec=deluge
|
Exec=deluge-torrent
|
||||||
Icon=deluge.xpm
|
Icon=deluge-torrent.xpm
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Type=Application
|
Type=Application
|
||||||
Categories=Application;Network
|
Categories=Application;Network
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -80,7 +80,9 @@ deluge_core = Extension('deluge_core',
|
||||||
'libtorrent/src/kademlia/traversal_algorithm.cpp'])
|
'libtorrent/src/kademlia/traversal_algorithm.cpp'])
|
||||||
|
|
||||||
data = [('share/deluge/glade', glob.glob('glade/*.glade')),
|
data = [('share/deluge/glade', glob.glob('glade/*.glade')),
|
||||||
('share/deluge/pixmaps', glob.glob('pixmaps/*.png'))]
|
('share/deluge/pixmaps', glob.glob('pixmaps/*.png')),
|
||||||
|
('share/applications' , ['deluge.desktop']),
|
||||||
|
('share/pixmaps' , ['deluge.xpm'])]
|
||||||
|
|
||||||
for plugin in glob.glob('plugins/*'):
|
for plugin in glob.glob('plugins/*'):
|
||||||
data.append( ('share/deluge/' + plugin, glob.glob(plugin + '/*')) )
|
data.append( ('share/deluge/' + plugin, glob.glob(plugin + '/*')) )
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue