Codebase list xapp / upstream/1.4.5 schemas / meson_install_schemas.py
upstream/1.4.5

Tree @upstream/1.4.5 (Download .tar.gz)

meson_install_schemas.py @upstream/1.4.5raw · 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])