Codebase list gnome-shell-extension-desktop-icons / 7f95b94e-21a4-47d7-9c3c-9409a1922e4f/main meson_post_install.py
7f95b94e-21a4-47d7-9c3c-9409a1922e4f/main

Tree @7f95b94e-21a4-47d7-9c3c-9409a1922e4f/main (Download .tar.gz)

meson_post_install.py @7f95b94e-21a4-47d7-9c3c-9409a1922e4f/mainraw · history · blame

#!/usr/bin/python3

import os
import subprocess

prefix = os.environ['MESON_INSTALL_DESTDIR_PREFIX']
schemadir = os.path.join(prefix, 'share', 'glib-2.0', 'schemas')

# Packaging tools define DESTDIR and this isn't needed for them
if 'DESTDIR' not in os.environ:
    print('Compiling GSettings schemas...')
    subprocess.call(['glib-compile-schemas', schemadir])