Codebase list xapp / 4aa129f5-5cbc-4e02-b476-49ea835e40ee/main schemas / meson_install_schemas.py
4aa129f5-5cbc-4e02-b476-49ea835e40ee/main

Tree @4aa129f5-5cbc-4e02-b476-49ea835e40ee/main (Download .tar.gz)

meson_install_schemas.py @4aa129f5-5cbc-4e02-b476-49ea835e40ee/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])