pulseaudio/src/modules/gsettings/meson_post_install.py
David Heidelberg 5231483432 meson: convert post-install.sh to python
Inspired by: 36a2e4f8a7 (0cc1139e3347f573ae1feee5b73dbc8a8a21fcfa_0_14)

Signed-off-by: David Heidelberg <david@ixit.cz>
2019-11-14 21:10:00 +02:00

14 lines
336 B
Python

#!/usr/bin/env python3
import os
import subprocess
import sys
datadir = sys.argv[1]
# Package managers set this so we don't need to run
if not os.environ.get('DESTDIR'):
schemadir = os.path.join(datadir, 'glib-2.0', 'schemas')
print('Compiling gsettings schemas...')
subprocess.call(['glib-compile-schemas', schemadir])