Codebase list gnome-shell-extension-desktop-icons / debian/18.11_rc-1 meson_post_install.py
debian/18.11_rc-1

Tree @debian/18.11_rc-1 (Download .tar.gz)

meson_post_install.py @debian/18.11_rc-1raw · history · blame

#!/usr/bin/env python3
'''
Meson custom install script
'''

import os
from subprocess import call

PREFIX = os.environ.get('MESON_INSTALL_PREFIX', os.getcwd())

print("Installing new Schemas")
call(['glib-compile-schemas', os.path.join(PREFIX, 'schemas/')])