aoi-game-launcher/build-aux/meson/postinstall.py
David Boddie 065649aaad Add most of the first tutorial
Signed-off-by: David Boddie <david.boddie@puri.sm>
2019-04-05 17:19:09 +02:00

14 lines
404 B
Python
Executable file

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