Fixed theme icon installation

This commit is contained in:
Pascal Reinhard 2012-11-14 18:12:46 +01:00
parent 344a1926ce
commit d139498588
4 changed files with 403 additions and 713 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 48 KiB

View file

@ -8,7 +8,7 @@
<property name="title" translatable="yes">About Lutris</property>
<property name="window_position">center-on-parent</property>
<property name="destroy_with_parent">True</property>
<property name="icon">../media/logo.svg</property>
<property name="icon">../media/lutris.svg</property>
<property name="icon_name">lutris</property>
<property name="type_hint">dialog</property>
<property name="skip_taskbar_hint">True</property>

View file

@ -74,7 +74,8 @@ for directory, _, filenames in os.walk(u'data'):
filename = os.path.join(directory, filename)
files.append(filename)
data_files.append((os.path.join('share/lutris', dest), files))
data_files.append(('share/icons', ['data/media/lutris.svg']))
data_files.append(('share/icons/hicolor/scalable/apps', ['data/media/lutris.svg']))
data_files.append(('share/pixmaps', ['data/media/lutris.png']))
data_files.append(('share/applications', ['lutris.desktop']))
setup(