15 lines
407 B
Python
15 lines
407 B
Python
|
#!/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 desktop database...')
|
||
|
call(['update-desktop-database', '-q', path.join(datadir, 'applications')])
|
||
|
|