Do not lie as much in the desktop file
This commit is contained in:
parent
06af1a3cc9
commit
f8526d486a
|
@ -7,5 +7,4 @@ Exec=fastiv %F
|
|||
Terminal=false
|
||||
StartupNotify=true
|
||||
Categories=Graphics;2DGraphics;Viewer;
|
||||
# TODO(p): Generate this list from source files.
|
||||
MimeType=image/png;image/bmp;image/gif;image/jpeg;image/x-dcraw;image/svg+xml;image/x-xcursor;
|
||||
MimeType=image/png;image/bmp;image/gif;image/jpeg;
|
||||
|
|
13
meson.build
13
meson.build
|
@ -30,7 +30,7 @@ configure_file(
|
|||
configuration : conf,
|
||||
)
|
||||
|
||||
executable('fastiv', 'fastiv.c', 'fastiv-view.c', 'fastiv-io.c',
|
||||
exe = executable('fastiv', 'fastiv.c', 'fastiv-view.c', 'fastiv-io.c',
|
||||
'fastiv-browser.c', 'xdg.c',
|
||||
install : true,
|
||||
dependencies : [dependencies])
|
||||
|
@ -45,3 +45,14 @@ install_data('fastiv.desktop',
|
|||
install_dir : get_option('datadir') + '/applications')
|
||||
install_data('fastiv.svg',
|
||||
install_dir : get_option('datadir') + '/icons/hicolor/scalable/apps')
|
||||
|
||||
# TODO(p): Replace this with custom_target().
|
||||
if not meson.is_cross_build()
|
||||
meson.add_install_script(
|
||||
'sh', '-c', '''sed -i "/^MimeType=/{c \\
|
||||
MimeType=$($1 --list-supported-media-types | tr "\\012" ";")
|
||||
}" "$MESON_INSTALL_DESTDIR_PREFIX/$2"''',
|
||||
'sh',
|
||||
exe.full_path(),
|
||||
get_option('datadir') + '/applications/fastiv.desktop')
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue