mirror of
https://github.com/donl/Lights-Up.git
synced 2026-05-25 22:06:26 -06:00
10 lines
No EOL
294 B
Python
10 lines
No EOL
294 B
Python
#!/usr/bin/env python3
|
|
|
|
import os
|
|
import subprocess
|
|
|
|
schemadir = os.path.join(os.environ['MESON_INSTALL_PREFIX'], 'share', 'glib-2.0', 'schemas')
|
|
|
|
if not os.environ.get('DESTDIR'):
|
|
print('Compiling gsettings schemas...')
|
|
subprocess.call(['glib-compile-schemas', schemadir], shell=False) |