Codebase list gnome-settings-daemon / debian/41.0-3 meson_post_install.py
debian/41.0-3

Tree @debian/41.0-3 (Download .tar.gz)

meson_post_install.py @debian/41.0-3raw · history · blame

#!/usr/bin/env python3

import os
import subprocess
import sys

if not os.environ.get('DESTDIR'):
  schemadir = os.path.join(sys.argv[1], 'glib-2.0', 'schemas')

  print('Compiling gsettings schemas...')
  subprocess.call(['glib-compile-schemas', schemadir])