File: meson_post_install.py

package info (click to toggle)
atomix 3.31.90-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,032 kB
  • sloc: ansic: 4,568; makefile: 7; python: 7
file content (15 lines) | stat: -rw-r--r-- 423 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python3

import os
import subprocess
import sys

if not os.environ.get('DESTDIR'):
  icon_dir = os.path.join(sys.argv[1], 'icons', 'hicolor')
#  schema_dir = os.path.join(sys.argv[1], 'glib-2.0', 'schemas')
  print('Update icon cache...')
  subprocess.call(['gtk-update-icon-cache', '-f', '-t', icon_dir])

#  print('Compiling gsettings schemas...')
#  subprocess.call(['glib-compile-schemas', schema_dir])