This repository has been archived on 2025-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pamac-classic/meson_scripts/install_schemas.py

10 lines
281 B
Python
Executable File

#!/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])