Codebase list xapp / 6349e231-a3dc-44d6-be6d-5016c014532f/main schemas / meson_install_schemas.py
6349e231-a3dc-44d6-be6d-5016c014532f/main

Tree @6349e231-a3dc-44d6-be6d-5016c014532f/main (Download .tar.gz)

meson_install_schemas.py @6349e231-a3dc-44d6-be6d-5016c014532f/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])