Codebase list xapp / 8336e5e8-4a30-45a9-b691-c44baffba1eb/main schemas / meson_install_schemas.py
8336e5e8-4a30-45a9-b691-c44baffba1eb/main

Tree @8336e5e8-4a30-45a9-b691-c44baffba1eb/main (Download .tar.gz)

meson_install_schemas.py @8336e5e8-4a30-45a9-b691-c44baffba1eb/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])