We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f25536 commit 50e64dcCopy full SHA for 50e64dc
meson/post_install.py
@@ -0,0 +1,10 @@
1
+#!/usr/bin/env python3
2
+
3
+import os
4
+import subprocess
5
6
+schemadir = os.path.join(os.environ['MESON_INSTALL_PREFIX'], 'share', 'glib-2.0', 'schemas')
7
8
+if not os.environ.get('DESTDIR'):
9
+ print('Compiling gsettings schemas...')
10
+ subprocess.call(['glib-compile-schemas', schemadir])
0 commit comments