File: meson_post_install.py

package info (click to toggle)
feedreader 2.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 10,868 kB
  • sloc: ansic: 11,829; xml: 879; php: 170; sh: 32; makefile: 16; python: 14
file content (18 lines) | stat: -rwxr-xr-x 619 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python3

from os import environ, path
from subprocess import call

prefix = environ.get('MESON_INSTALL_PREFIX', '/usr/local')
datadir = path.join(prefix, 'share')
destdir = environ.get('DESTDIR', '')

if not destdir:
    print('Updating icon cache...')
    icons_dir = path.join(datadir, 'icons', 'hicolor')
    call(['gtk-update-icon-cache', '-qtf', icons_dir])
    print("Installing new Schemas")
    schemas_dir =  path.join(datadir, 'glib-2.0/schemas')
    call(['glib-compile-schemas', schemas_dir])
    apps_dir =  path.join(datadir, 'applications')
    call(['update-desktop-database', apps_dir])