Skip to content

Commit

Permalink
untested hotfix for copying data/ to system wide local data dir.
Browse files Browse the repository at this point in the history
  • Loading branch information
genjix committed Aug 20, 2012
1 parent c9ed01e commit 02dd51c
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,15 @@
data_files.append( ('/usr/share/locale/%s/LC_MESSAGES'%lang, ['locale/%s/LC_MESSAGES/electrum.mo'%lang]) )

data_files += [
(util.appdata_dir(), ["data/background.png", "data/style.css"]),
(os.path.join(util.appdata_dir(), "icons"), [
"data/icons/confirmed.png",
"data/icons/unconfirmed.png"
(util.appdata_dir(), ["data/noface.svg", "data/README"]),
(os.path.join(util.appdata_dir(), "cleanlook"), [
"data/cleanlook/name.cfg",
"data/cleanlook/style.css"
]),
(os.path.join(util.appdata_dir(), "dark"), [
"data/dark/background.png",
"data/dark/name.cfg",
"data/dark/style.css"
])
]

Expand Down

0 comments on commit 02dd51c

Please sign in to comment.