Codebase list xapp / fd4881f6-9bf9-4828-a7a2-4888d33cbd11/main schemas / meson_install_schemas.py
fd4881f6-9bf9-4828-a7a2-4888d33cbd11/main

Tree @fd4881f6-9bf9-4828-a7a2-4888d33cbd11/main (Download .tar.gz)

meson_install_schemas.py @fd4881f6-9bf9-4828-a7a2-4888d33cbd11/mainraw · history · blame

#!/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])