Graphical package manager for pacman based on pamac 5.x.x
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env 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]) |