gitg/meson_post_install.py

36 lines
1.2 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
import glob
import os
import re
import subprocess
import sys
if not os.environ.get('DESTDIR'):
2020-07-12 12:35:56 +00:00
gitg_name = sys.argv[1]
datadir = sys.argv[2]
icondir = os.path.join(datadir, 'icons', 'hicolor')
name_pattern = re.compile('hicolor_(?:apps)_(?:\d+x\d+|scalable)_(.*)')
search_pattern = '/**/hicolor_*'
[os.rename(file, os.path.join(os.path.dirname(file), name_pattern.search(file).group(1)))
for file in glob.glob(icondir + search_pattern, recursive=True)]
print('Update icon cache...')
subprocess.call(['gtk-update-icon-cache', '-f', '-t', '-q', icondir])
2020-07-12 12:35:56 +00:00
icondir = os.path.join(datadir, gitg_name, 'icons', 'hicolor')
subprocess.call(['gtk-update-icon-cache', '-f', '-t', '-q', icondir])
2020-07-12 12:35:56 +00:00
schemadir = os.path.join(datadir, 'glib-2.0', 'schemas')
print('Compiling gsettings schemas...')
subprocess.call(['glib-compile-schemas', schemadir])
if sys.argv[2] == 'python':
print('Byte-compiling python modules...')
2019-06-28 17:42:58 +00:00
subprocess.call(['python3', '-m', 'compileall', '-f', '-q', sys.argv[3]])
print('Byte-compiling python modules (optimized versions) ...')
2019-06-28 17:42:58 +00:00
subprocess.call(['python3', '-O', '-m', 'compileall', '-f', '-q', sys.argv[3]])