17 lines
551 B
Python
17 lines
551 B
Python
|
#!/usr/bin/env python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
import os
|
||
|
import subprocess
|
||
|
|
||
|
install_prefix = os.environ['MESON_INSTALL_PREFIX']
|
||
|
|
||
|
if not os.environ.get('DESTDIR'):
|
||
|
print('Updating icon cache…')
|
||
|
icon_cache_dir = os.path.join(install_prefix, 'share', 'icons', 'hicolor')
|
||
|
subprocess.call(['gtk-update-icon-cache', '-qtf', icon_cache_dir])
|
||
|
|
||
|
print('Updating desktop database…')
|
||
|
desktop_database_dir = os.path.join(install_prefix, 'share', 'applications')
|
||
|
subprocess.call(['update-desktop-database', '-q', desktop_database_dir])
|