Skip to content

Commit

Permalink
Don't hardcode installation of data files to /usr/share.
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Spiers committed Dec 18, 2011
1 parent 590e31e commit afb8046
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions setup.py 100644 → 100755
Expand Up @@ -41,13 +41,13 @@

scripts= [SCRIPT],
# TODO: remove when we use the upstream Jabberbot
data_files = [('/usr/share/' + SCRIPT, ['jabberbot.py', 'autosync-xdg-launcher.sh']),
('/usr/share/applications', [SCRIPT + '.desktop']),
('/usr/share/icons/hicolor/8x8/apps', ['icons/8x8/dvcs-autosync.png']),
('/usr/share/icons/hicolor/16x16/apps', ['icons/16x16/dvcs-autosync.png']),
('/usr/share/icons/hicolor/22x22/apps', ['icons/22x22/dvcs-autosync.png']),
('/usr/share/icons/hicolor/32x32/apps', ['icons/32x32/dvcs-autosync.png']),
('/usr/share/icons/hicolor/48x48/apps', ['icons/48x48/dvcs-autosync.png'])],
data_files = [('share/' + SCRIPT, ['jabberbot.py', 'autosync-xdg-launcher.sh']),
('share/applications', [SCRIPT + '.desktop']),
('share/icons/hicolor/8x8/apps', ['icons/8x8/dvcs-autosync.png']),
('share/icons/hicolor/16x16/apps', ['icons/16x16/dvcs-autosync.png']),
('share/icons/hicolor/22x22/apps', ['icons/22x22/dvcs-autosync.png']),
('share/icons/hicolor/32x32/apps', ['icons/32x32/dvcs-autosync.png']),
('share/icons/hicolor/48x48/apps', ['icons/48x48/dvcs-autosync.png'])],

description= 'Automatic synchronization of distributed version control repositories',
download_url= 'https://gitorious.org/dvcs-autosync',
Expand Down

0 comments on commit afb8046

Please sign in to comment.