summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLogan Rathbone <poprocks@gmail.com>2021-02-14 23:00:49 -0500
committerLogan Rathbone <poprocks@gmail.com>2021-02-14 23:00:49 -0500
commit592e2555c352fdd85643b94030473f7dcd6095c4 (patch)
tree59f0074fd3d3a2a127e73e7a7992d5cfda11f1e8
parent2aac67b9c184ad533510d61569a5763e87ecf7f3 (diff)
downloadzenity-592e2555c352fdd85643b94030473f7dcd6095c4.tar.gz
Add meson post-install script.
-rw-r--r--meson.build2
-rw-r--r--meson_post_install.py15
2 files changed, 17 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index a1a4031..26dad82 100644
--- a/meson.build
+++ b/meson.build
@@ -105,3 +105,5 @@ subdir('data')
subdir('icons')
subdir('po')
subdir('help')
+
+meson.add_install_script('meson_post_install.py')
diff --git a/meson_post_install.py b/meson_post_install.py
new file mode 100644
index 0000000..2654e49
--- /dev/null
+++ b/meson_post_install.py
@@ -0,0 +1,15 @@
+#!/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])