mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-06 13:29:56 -05:00
Inspired by: 36a2e4f8a7 (0cc1139e3347f573ae1feee5b73dbc8a8a21fcfa_0_14)
Signed-off-by: David Heidelberg <david@ixit.cz>
14 lines
336 B
Python
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])
|
|
|