about summary refs log tree commit diff
path: root/build-aux/meson/postinstall.py
diff options
context:
space:
mode:
authorlakoliu <99976966+lakoliu@users.noreply.github.com>2022-07-24 10:09:08 +0300
committerGitHub <noreply@github.com>2022-07-24 10:09:08 +0300
commit0aeda0ca3607d84e29e4e60a845cca721f748610 (patch)
tree347f45dca0e617722a335953571b572baad3795b /build-aux/meson/postinstall.py
parent996f669796e83f08fd92506441e0340c0f393f61 (diff)
parent1889c11e0dcd995372e6f7876be701ad65b1c64a (diff)
downloadFurtherance-0aeda0ca3607d84e29e4e60a845cca721f748610.tar.zst
Merge pull request #80 from winterqt/gnome-post-install
Switch to gnome.post_install
Diffstat (limited to 'build-aux/meson/postinstall.py')
-rwxr-xr-xbuild-aux/meson/postinstall.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/build-aux/meson/postinstall.py b/build-aux/meson/postinstall.py
deleted file mode 100755
index 6a3ea97..0000000
--- a/build-aux/meson/postinstall.py
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/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', '')
-
-# Package managers set this so we don't need to run
-if not destdir:
-    print('Updating icon cache...')
-    call(['gtk-update-icon-cache', '-qtf', path.join(datadir, 'icons', 'hicolor')])
-
-    print('Updating desktop database...')
-    call(['update-desktop-database', '-q', path.join(datadir, 'applications')])
-
-    print('Compiling GSettings schemas...')
-    call(['glib-compile-schemas', path.join(datadir, 'glib-2.0', 'schemas')])
-
-