menu entry

This commit is contained in:
Zach Tibbitts 2007-02-19 18:30:38 +00:00
parent f6fcf7ab45
commit e573805007
2 changed files with 7 additions and 5 deletions

View File

@ -1,9 +1,9 @@
[Desktop-Entry]
[Desktop Entry]
Encoding=UTF-8
Name=Deluge BitTorrent Client
Comment=BitTorrent client in Python/PyGTK
Exec=deluge
Icon=deluge.xpm
Comment=Bittorrent client written in Python/PyGTK
Exec=deluge-torrent
Icon=deluge-torrent.xpm
Terminal=false
Type=Application
Categories=Application;Network

View File

@ -80,7 +80,9 @@ deluge_core = Extension('deluge_core',
'libtorrent/src/kademlia/traversal_algorithm.cpp'])
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/*'):
data.append( ('share/deluge/' + plugin, glob.glob(plugin + '/*')) )