meson: Add post install scrip

Makes sure the icons and desktop file are installed
This commit is contained in:
Maximiliano Sandoval R 2022-03-15 11:16:37 +01:00 committed by Mathieu Comandon
parent dc1be9c871
commit f52a7308bf
2 changed files with 18 additions and 0 deletions

View file

@ -97,3 +97,5 @@ if appstreamcli.found()
args: ['validate-relax', '--nonet', metainfo_file.full_path() ]
)
endif
meson.add_install_script('utils/meson_post_install.py')

View file

@ -0,0 +1,16 @@
#!/usr/bin/env python3
from os import environ, path
from subprocess import call
prefix = environ.get('MESON_INSTALL_PREFIX', '/usr/local')
datadir = path.join(prefix, 'share')
destdir = environ.get('DESTDIR', '')
# Package managers set this so we don't need to run
if not destdir:
print('Updating icon cache...')
call(['gtk-update-icon-cache', '-qtf', path.join(datadir, 'icons', 'hicolor')])
print('Updating desktop database...')
call(['update-desktop-database', '-q', path.join(datadir, 'applications')])