2 changed files with 6 additions and 16 deletions
@ -1,14 +0,0 @@
|
||||
#!/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')]) |
||||
print("Updating desktop database...") |
||||
call(["update-desktop-database", path.join(DATA_DIR, 'applications')]) |
||||
Loading…
Reference in new issue