summaryrefslogtreecommitdiff
path: root/meson_post_install.py
diff options
context:
space:
mode:
authorJeremy Bicha <jeremy.bicha@canonical.com>2023-01-27 18:52:37 -0500
committerJeremy Bicha <jeremy.bicha@canonical.com>2023-01-27 18:52:37 -0500
commit7aa3aec36b9bcb6061849145e91be4ecd50941c2 (patch)
tree5819e0af723dc29afa17f8b0e15f47a24f04996d /meson_post_install.py
parentNew upstream version 3.43.0 (diff)
parentZenity 3.44.0 (diff)
downloadzenity-7aa3aec36b9bcb6061849145e91be4ecd50941c2.tar.gz
zenity-7aa3aec36b9bcb6061849145e91be4ecd50941c2.tar.bz2
zenity-7aa3aec36b9bcb6061849145e91be4ecd50941c2.zip
New upstream version 3.44.0
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