Skip to content

Commit

Permalink
Fix: setup script broke all icons. Fixes #152
Browse files Browse the repository at this point in the history
  • Loading branch information
kozec committed May 11, 2015
1 parent 3bf3695 commit 8c594c6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,15 @@ def get_version():
data_files = [
('share/syncthing-gtk', glob.glob("*.glade") ),
('share/syncthing-gtk', glob.glob("scripts/syncthing-plugin-*.py") ),
('share/syncthing-gtk/icons', [
"icons/%s.png" % x for x in (
'add_node', 'add_repo', 'address',
'announce', 'clock', 'compress', 'cpu', 'dl_rate',
'eye', 'folder', 'global', 'home', 'ignore', 'lock',
'ram', 'restart', 'settings', 'shared', 'show_id',
'shutdown', 'show_id', 'sync', 'thumb_up',
'up_rate', 'version'
)]),
('share/pixmaps', glob.glob("icons/emblem-*.png") ),
('share/pixmaps', ["icons/syncthing-gtk.png"]),
('share/applications', ['syncthing-gtk.desktop'] ),
Expand Down

0 comments on commit 8c594c6

Please sign in to comment.