summaryrefslogtreecommitdiff
path: root/meson_post_install.py
diff options
context:
space:
mode:
authorJeremy Bicha <jeremy.bicha@canonical.com>2023-01-27 18:52:43 -0500
committerJeremy Bicha <jeremy.bicha@canonical.com>2023-01-27 18:52:43 -0500
commit8bac27ca3dbe32eb351f4a5df5be5d47aad568d9 (patch)
tree05907d3db6b56c647647b71819b5a68e5e49803f /meson_post_install.py
parentreleasing package zenity version 3.43.0-1 (diff)
parentNew upstream version 3.44.0 (diff)
downloadzenity-8bac27ca3dbe32eb351f4a5df5be5d47aad568d9.tar.gz
zenity-8bac27ca3dbe32eb351f4a5df5be5d47aad568d9.tar.bz2
zenity-8bac27ca3dbe32eb351f4a5df5be5d47aad568d9.zip
Update upstream source from tag 'upstream/3.44.0'
Update to upstream version '3.44.0' with Debian dir 803175ae5e7ece2df9e7717765dd32844b3e4f81
Diffstat (limited to 'meson_post_install.py')
-rw-r--r--meson_post_install.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/meson_post_install.py b/meson_post_install.py
deleted file mode 100644
index 2654e49d..00000000
--- a/meson_post_install.py
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env python3
-
-import os
-import subprocess
-
-prefix = os.environ.get('MESON_INSTALL_PREFIX', '/usr/local')
-datadir = os.path.join(prefix, 'share')
-
-# Packaging tools define DESTDIR and this isn't needed for them
-if 'DESTDIR' not in os.environ:
- print('Updating icon cache...')
- icon_cache_dir = os.path.join(datadir, 'icons', 'hicolor')
- if not os.path.exists(icon_cache_dir):
- os.makedirs(icon_cache_dir)
- subprocess.call(['gtk-update-icon-cache', '-qtf', icon_cache_dir])
bgstack15