Codebase list tilix / debian/1.9.3-2 meson_post_install.py
debian/1.9.3-2

Tree @debian/1.9.3-2 (Download .tar.gz)

meson_post_install.py @debian/1.9.3-2raw · history · blame

#!/usr/bin/env python3
from os import environ, path
from subprocess import call

if not environ.get('DESTDIR', ''):
    PREFIX = environ.get('MESON_INSTALL_PREFIX', '/usr/local')
    DATA_DIR = path.join(PREFIX, 'share')
    print('Updating icon cache...')
    call(['gtk-update-icon-cache', '-qtf', path.join(DATA_DIR, 'icons/hicolor')])
    print("compiling new schemas")
    call(["glib-compile-schemas", path.join(DATA_DIR, 'glib-2.0/schemas/')])