1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-07-02 15:09:31 +00:00
Purism-Calls/build-aux/meson/postinstall.py
2021-06-30 00:39:07 +02:00

19 lines
625 B
Python

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