lutris/utils/meson_post_install.py
Maximiliano Sandoval R f52a7308bf meson: Add post install scrip
Makes sure the icons and desktop file are installed
2022-04-11 14:09:21 -07:00

17 lines
527 B
Python

#!/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')])