Codebase list xapp / 0084944 schemas / meson_install_schemas.py
0084944

Tree @0084944 (Download .tar.gz)

meson_install_schemas.py @0084944

0084944
9e2566e
 
 
 
 
 
 
 
 
#!/usr/bin/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])